| 25 | } |
| 26 | |
| 27 | void Quake3MapFormatBase::initialiseModule(const IApplicationContext& ctx) |
| 28 | { |
| 29 | // Register ourselves as map format for maps and regions |
| 30 | GlobalMapFormatManager().registerMapFormat("map", getSharedToThis()); |
| 31 | GlobalMapFormatManager().registerMapFormat("reg", getSharedToThis()); |
| 32 | GlobalMapFormatManager().registerMapFormat("pfb", getSharedToThis()); |
| 33 | } |
| 34 | |
| 35 | void Quake3MapFormatBase::shutdownModule() |
| 36 | { |
nothing calls this directly
no test coverage detected