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,
string  description 
)
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.
descBrief description that explains what the command does and how it is used.

Definition at line 64 of file AVR_Attributes.cs.

65  {
66  this.command_string = command_string;
67  this.min_args = 0;
68  this.desc = description;
69  }