AStarXNA.ConsoleCommands.CellSizeCommand.Execute C# (CSharp) Méthode

Execute() public méthode

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