Dump overlay list

This commit is contained in:
gamemasterplc 2023-11-23 21:58:33 -06:00
parent a8d2b73106
commit 47f2bb30b9
11 changed files with 142 additions and 3 deletions

15
include/common_enums.h Normal file
View file

@ -0,0 +1,15 @@
#ifndef _COMMON_ENUMS_H
#define _COMMON_ENUMS_H
#include "types.h"
#define OVL_DEFINE(name, path) name,
typedef enum {
#include "ovl_table.h"
OVL_COUNT
} OverlayID;
#undef OVL_DEFINE
#endif