VR Development Framework
v 1.0.0
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
static void AVR.Core.AVR_DevConsole.print_all_available_commands ( )
inlinestaticprivate

Definition at line 347 of file AVR_DevConsole.cs.

347  {
348  print("COMMAND \t\t MIN ARGS");
349  foreach(AVR_ConsoleCommand cmd in commands) {
350  print(cmd.name + "\t\t" + cmd.min_args);
351  }
352  }
static List< AVR_ConsoleCommand > commands
static void print(string s)
Print a given string on the console.