示例#1
0
        public Game_Main(VM_MainWindow view)
        {
            this.VM   = view;
            GameState = new Game_State();

            GameHistory     = new List <int[]>();
            DecisionHistory = new List <int>();

            AIInformation = new int[2];
            Context       = new SituationContext();
            AI            = new Game_PlayerAI(this, Context);
        }
示例#2
0
 public Game_PlayerAI(Game_Main game, SituationContext context)
 {
     this.Game = game;
     this.DB   = context;
 }