예제 #1
0
        public void MoveSoldier(int newLocationX, int newLocationY)
        {
            _soldier.MoveSoldier(_currentLocationX, _currentLocationY, newLocationX, newLocationY);

            _currentLocationX = newLocationX;
            _currentLocationY = newLocationY;
        }