Beispiel #1
0
        public void Step(int action)
        {
            GameState nextState = gameState.TakeAction(action);

            this.gameState = nextState;
            this.LastMoves.Add(action);
        }
        public void Step(int action)
        {
            int[]     array1    = { 1, 2, 3 };
            GameState nextState = gameState.TakeAction(action);

            this.gameState = nextState;
            this.LastMoves.Add(action);
        }