public void RegisterCommand(bool doBindings, CommandBase commandHandler)
 {
     RegisterCommand(doBindings, commandHandler, true);
 }
示例#2
0
 public void RegisterCommand(string commandName, CommandBase command)
 {
     m_commands.Add(commandName, command);
 }