示例#1
0
        public void Move(Move move)
        {
            if (_game == null)
            {
                throw new Exception("game not started yet");
            }

            _game.Move(move);
        }