mirror of
https://github.com/zeldaret/tmc
synced 2026-05-25 15:25:26 -04:00
13 lines
252 B
C
13 lines
252 B
C
#include "global.h"
|
|
#include "room.h"
|
|
|
|
void extern LoadRoomEntity(EntityData*);
|
|
|
|
void LoadRoomEntityList(EntityData* listPtr) {
|
|
if (listPtr != NULL) {
|
|
while (*(u8*)listPtr != 0xFF) {
|
|
LoadRoomEntity(listPtr++);
|
|
}
|
|
}
|
|
}
|