| 454 | } |
| 455 | |
| 456 | FConsoleCommand* FConsoleCommand::FindByName (const char* name) |
| 457 | { |
| 458 | return FindNameInHashTable (Commands, name, strlen (name)); |
| 459 | } |
| 460 | |
| 461 | FConsoleCommand::FConsoleCommand (const char *name, CCmdRun runFunc) |
| 462 | : m_RunFunc (runFunc) |
nothing calls this directly
no test coverage detected