15 lines
203 B
C
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
|