Files
ss/include/toBeSorted/area_utils.h
T
Elijah Thomas 26af4db82d update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd

* include <a> -> "a"

* Update build.yml

* remove/add non-trivial class in union warning
2024-10-16 15:36:02 -04:00

11 lines
310 B
C

#ifndef AREA_UTILS_H
#define AREA_UTILS_H
#include "m/m_vec.h"
/* 800a9b00 */ bool checkPosInArea(void **AREA, const mVec3_c &pos);
/* 800a9bd0 */ void *getAreaForIndexInRoom(s32 areaIndex, s32 roomId);
/* 800a9c50 */ bool *checkPosInArea(s32 areaIndex, s32 roomId, const mVec3_c &pos, void **AREA);
#endif