diff options
| author | Brian Savage <savage13@gmail.com> | 2022-01-18 18:52:13 -0500 |
|---|---|---|
| committer | Brian Savage <savage13@gmail.com> | 2022-01-18 18:52:13 -0500 |
| commit | d61a13e4bd4a3bafab46280f65b0364895880a54 (patch) | |
| tree | ca2206e53c09ebc99927b3f6b42f070d3cae1291 /src/KingSystem/Map/mapPlacementMap.cpp | |
| parent | 98aeceed40166ed33ab50dac2e2bd36b1f471f99 (diff) | |
Add PlacementMap, stubs: PlacementMapMgr and PlacementMapMgrMapArray
Diffstat (limited to 'src/KingSystem/Map/mapPlacementMap.cpp')
| -rw-r--r-- | src/KingSystem/Map/mapPlacementMap.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/KingSystem/Map/mapPlacementMap.cpp b/src/KingSystem/Map/mapPlacementMap.cpp new file mode 100644 index 00000000..66e4bd48 --- /dev/null +++ b/src/KingSystem/Map/mapPlacementMap.cpp @@ -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 |
