home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 14 / IOPROG_14.ISO / soft / sdkjava / dxma.exe / DXMA05.cab / samples / da / java / apps / chess / Game.java < prev    next >
Encoding:
Java Source  |  1997-11-13  |  339 b   |  24 lines

  1. // class: Game
  2. // This holds a list of Moves that specify a game. It also holds
  3. // extra game information liek the tags and original source text.
  4.  
  5.  
  6. import java.util.Vector;
  7.  
  8. public class Game {
  9.  
  10.   
  11.   public Vector   m_tags = new Vector();
  12.   public Vector   m_moves = new Vector();
  13.  
  14.   String         m_src;
  15. }
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.