VR Development Framework
v 1.0.0
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
AVR.Core.Attributes.ConsoleCommand.ConsoleCommand ( string  command_string,
int  min_args = 0,
string  description = "No description given." 
)
inline

Defines a method as a command vor the AVR_DevConsole.

Parameters
command_stringString which represents the command. This is the same string a user inputs to run it.
min_argsMinimum amount of arguments a user must provide for the command to run.
descBrief description that explains what the command does and how it is used.

Definition at line 53 of file AVR_Attributes.cs.

53  {
54  this.command_string = command_string;
55  this.min_args = min_args;
56  this.desc = description;
57  }