| 256 | } |
| 257 | |
| 258 | const char* CGameObjectSystem::GetName(ExtensionID id) |
| 259 | { |
| 260 | if (id > m_extensionInfo.size()) |
| 261 | return NULL; |
| 262 | else |
| 263 | return m_extensionInfo[id].name.c_str(); |
| 264 | } |
| 265 | |
| 266 | void CGameObjectSystem::BroadcastEvent(const SGameObjectEvent& evt) |
| 267 | { |
no test coverage detected