1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-21 12:54:51 +00:00
oot/include/z64object.h

20 lines
378 B
C
Raw Normal View History

#ifndef Z64OBJECT_H
#define Z64OBJECT_H
2020-03-17 04:31:30 +00:00
#define OBJECT_EXCHANGE_BANK_MAX 19
#define DEFINE_OBJECT(_0, enum) enum,
#define DEFINE_OBJECT_NULL(_0, enum) enum,
#define DEFINE_OBJECT_UNSET(enum) enum,
2020-03-22 21:50:11 +00:00
typedef enum {
#include "tables/object_table.h"
/* 0x0192 */ OBJECT_ID_MAX
2020-03-17 04:31:30 +00:00
} ObjectID;
#undef DEFINE_OBJECT
#undef DEFINE_OBJECT_NULL
#undef DEFINE_OBJECT_UNSET
2020-03-17 04:31:30 +00:00
#endif