| 31 | } |
| 32 | |
| 33 | void Quake4MapFormat::initialiseModule(const IApplicationContext& ctx) |
| 34 | { |
| 35 | // Register ourselves as map format for maps, regions and prefabs |
| 36 | GlobalMapFormatManager().registerMapFormat("map", shared_from_this()); |
| 37 | GlobalMapFormatManager().registerMapFormat("reg", shared_from_this()); |
| 38 | GlobalMapFormatManager().registerMapFormat("pfb", shared_from_this()); |
| 39 | } |
| 40 | |
| 41 | void Quake4MapFormat::shutdownModule() |
| 42 | { |
nothing calls this directly
no test coverage detected