| 81 | } |
| 82 | |
| 83 | void StubPlugin::BindToSourcemod() |
| 84 | { |
| 85 | char error[256]; |
| 86 | |
| 87 | if (!SM_LoadExtension(error, sizeof(error))) |
| 88 | { |
| 89 | char message[512]; |
| 90 | UTIL_Format(message, sizeof(message), "Could not load as a SourceMod extension: %s\n", error); |
| 91 | engine->LogPrint(message); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | bool StubPlugin::Pause(char *error, size_t maxlen) |
| 96 | { |
nothing calls this directly
no test coverage detected