예제 #1
0
 public GameLogic()
 {
     Player    = new Player();
     Computer  = new Computer();
     GameState = new GameState();
     CIO       = new ConsoleInterface("Trading Card Game" + "\r\n");
 }
예제 #2
0
        public int Decide(ConsoleInterface cio)
        {
            CIO = cio;
            int ManaCost = new int();

            ManaCost = MinMax();
            return(ManaCost);
        }