| 75 | { |
| 76 | } |
| 77 | void clear() |
| 78 | { |
| 79 | if (m_ownsPluginHandle) |
| 80 | { |
| 81 | B3_DYNLIB_CLOSE(m_pluginHandle); |
| 82 | } |
| 83 | m_pluginHandle = 0; |
| 84 | m_initFunc = 0; |
| 85 | m_exitFunc = 0; |
| 86 | m_executeCommandFunc = 0; |
| 87 | m_preTickFunc = 0; |
| 88 | m_postTickFunc = 0; |
| 89 | m_processNotificationsFunc = 0; |
| 90 | m_processClientCommandsFunc = 0; |
| 91 | m_getRendererFunc = 0; |
| 92 | m_getCollisionFunc = 0; |
| 93 | m_getFileIOFunc = 0; |
| 94 | m_userPointer = 0; |
| 95 | m_returnData = 0; |
| 96 | m_isInitialized = false; |
| 97 | } |
| 98 | |
| 99 | const char* GetMapKey() const |
| 100 | { |
no outgoing calls
no test coverage detected