marioparty4/include/common_enums.h
2023-11-23 21:58:33 -06:00

15 lines
203 B
C

#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