AStarXNA.ConsoleCommands.CellSizeCommand.Execute C# (CSharp) 메소드

Execute() 공개 메소드

public Execute ( string arguments ) : string
arguments string
리턴 string
        public string Execute(string[] arguments)
        {
            grid.Resize(Convert.ToInt32(arguments[0]));
            return "Cells are now size " + grid.CellSize;
        }