2022-08-13 06:43:15 +00:00
|
|
|
// NOTE(zaklaus): access to spawners
|
2022-09-27 12:56:48 +00:00
|
|
|
#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 });
|
|
|
|
}
|