mirror of
https://github.com/zeldaret/ss
synced 2026-05-23 15:01:38 -04:00
12 lines
297 B
C
12 lines
297 B
C
#ifndef AREA_UTILS_H
|
|
#define AREA_UTILS_H
|
|
|
|
#include "d/d_bzs_types.h"
|
|
#include "m/m_vec.h"
|
|
|
|
bool checkPosInArea(AREA **area, const mVec3_c &pos);
|
|
AREA *getAreaForIndexInRoom(s32 areaIndex, s32 roomId);
|
|
bool checkPosInArea(s32 areaIndex, s32 roomId, const mVec3_c &pos, AREA *const *area);
|
|
|
|
#endif
|