示例#1
0
        public GameEngine(String whoStarts) {
            /// <summary>
            /// Game-engine constructor 
            /// </summary>
            instance = this;
            player = new Player();
            
            ai = new Ai();

            WhosCodeMaker = whoStarts;
            InitializeEngine();
            DetermineStartTurn();
        }
示例#2
0
 public Player() {
     instance = this;
 }