mirror of
https://github.com/zeldaret/tmc
synced 2026-05-24 23:22:08 -04:00
13 lines
254 B
C
13 lines
254 B
C
#include "global.h"
|
|
#include "room.h"
|
|
|
|
void extern CreateEntity(EntityData*);
|
|
|
|
void LoadRoomEntityList(EntityData* listPtr) {
|
|
if (listPtr != NULL) {
|
|
while (listPtr->entityType != 0xFF) {
|
|
CreateEntity(listPtr++);
|
|
}
|
|
}
|
|
}
|