| 61 | |
| 62 | #ifdef TORQUE_DEBUG_NET |
| 63 | const char *RemoteCommandEvent::getDebugName() |
| 64 | { |
| 65 | static char buffer[256]; |
| 66 | dSprintf(buffer, sizeof(buffer), "%s [%s]", getClassName(), mTagv[1].isValidString() ? mTagv[1].getString() : "--unknown--" ); |
| 67 | return buffer; |
| 68 | } |
| 69 | #endif |
| 70 | |
| 71 | RemoteCommandEvent::~RemoteCommandEvent() |
nothing calls this directly
no test coverage detected