home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-11-13 | 339 b | 24 lines |
- // class: Game
- // This holds a list of Moves that specify a game. It also holds
- // extra game information liek the tags and original source text.
-
-
- import java.util.Vector;
-
- public class Game {
-
-
- public Vector m_tags = new Vector();
- public Vector m_moves = new Vector();
-
- String m_src;
- }
-
-
-
-
-
-
-
-
-