You've already forked marioparty5
mirror of
https://github.com/encounter/marioparty5.git
synced 2026-03-30 11:29:39 -07:00
16 lines
223 B
C
16 lines
223 B
C
#ifndef MESSDIR_ENUM
|
|
#define MESSDIR_ENUM
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
#define MESSDIR(id) MESS_##id,
|
|
|
|
enum {
|
|
#include "messdir_table.h"
|
|
};
|
|
|
|
#undef MESSDIR
|
|
|
|
#define MESSNUM(dir, file) (u32)(((dir) << 16)|(file))
|
|
|
|
#endif |