Add PlacementMap, stubs: PlacementMapMgr and PlacementMapMgrMapArray

This commit is contained in:
Brian Savage
2022-01-18 18:52:13 -05:00
parent 98aeceed40
commit d61a13e4bd
5 changed files with 226 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
#include "KingSystem/Map/mapPlacementMap.h"
namespace ksys::map {
SEAD_SINGLETON_DISPOSER_IMPL(PlacementMapMgr)
void PlacementMapMgr::junk() {
/* Here to force the compiler to include PlacementMap */
PlacementMap x;
auto y = new PlacementMap;
(void)(x);
(void)(y);
}
} // namespace ksys::map