mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 15:20:58 -04:00
392145bf3d
* d_a_obj_appear_bridge - weak function order issue * Mark as nonmatching for now * Name unk IScnObjCallback funcs --------- Co-authored-by: elijah-thomas774 <elijahthomas774@gmail.com>
11 lines
310 B
C
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
|