Match a lot more of RandMapUnit

This commit is contained in:
intns 2024-01-12 14:25:19 +00:00
parent b8bbb1eb0a
commit df17ef7649
4 changed files with 104 additions and 765 deletions

View File

@ -54,6 +54,7 @@
"gxdata.h": "c",
"gxtypes.h": "c",
"gxtexture.h": "c",
"math.h": "c"
"math.h": "c",
"arith.h": "c"
}
}
}

View File

@ -51,6 +51,8 @@ struct MapUnitGenerator {
inline MapNode* getPlacedNodes() { return mPlacedMapNodes; }
inline MapNode* getVisitedNodes() { return mVisitedMapNodes; }
inline MapNode* getMapNodeKinds() { return mMapNodeKinds; }
inline FloorInfo* getFloorInfo() { return mFloorInfo; }
inline MapNode* getStartNode() { return mMemMapList->getChild(); }

View File

@ -16,6 +16,8 @@ int abs(int __x);
s32 labs(s32 __x);
div_t div(s32 __numer, s32 __denom);
inline int _abs(int __x) { return __x > 0 ? __x : -__x; }
#ifdef __cplusplus
};
#endif // ifdef __cplusplus

File diff suppressed because it is too large Load Diff