eco2d/code/foundation/src/ents/entity_spawnlist.c

9 lines
227 B
C
Raw Normal View History

2022-08-13 06:43:15 +00:00
// NOTE(zaklaus): access to spawners
#include "ents/storage.h"
2022-08-13 06:43:15 +00:00
2022-09-27 13:55:24 +00:00
static spawndef *entity_spawnlist = 0;
2022-08-13 06:43:15 +00:00
2022-09-27 13:55:24 +00:00
void entity_spawndef_setup(void) {
entity_spawndef_register((spawndef){ .id = ASSET_CHEST, .proc = storage_spawn });
}