// 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; }