AStarXNA.Game1.HandleRightButton C# (CSharp) 메소드

HandleRightButton() 개인적인 메소드

private HandleRightButton ( Point position ) : void
position Point
리턴 void
        void HandleRightButton(Point position)
        {
            var cell = grid.CellAtCoordinate(position.X, position.Y);
            SetCellType(cell, GridCellType.Walkable);
        }