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