--------------------------------------
| 84 | |
| 85 | //-------------------------------------- |
| 86 | void ConsoleConstructor::init( const char *cName, const char *fName, const char *usg, S32 minArgs, S32 maxArgs, bool isToolOnly, ConsoleFunctionHeader* header ) |
| 87 | { |
| 88 | mina = minArgs; |
| 89 | maxa = maxArgs; |
| 90 | funcName = fName; |
| 91 | usage = usg; |
| 92 | className = cName; |
| 93 | sc = 0; fc = 0; vc = 0; bc = 0; ic = 0; |
| 94 | callback = group = false; |
| 95 | next = first; |
| 96 | ns = false; |
| 97 | first = this; |
| 98 | toolOnly = isToolOnly; |
| 99 | this->header = header; |
| 100 | } |
| 101 | |
| 102 | void ConsoleConstructor::setup() |
| 103 | { |
no outgoing calls