Example #1
0
        public static ChessEngine Execute()
        {
            ChessEngine chess = new ChessEngine(
                                    new Board(),
                                    new Player( Player.PlayerColor.White ),
                                    new Player( Player.PlayerColor.Black ),
                                    new ConfigChess()
                                );

            return chess;
        }
Example #2
0
 void Awake()
 {
     gof = new GameObjectFactory();
     chess = BootstrapEngine.Execute();
 }