mirror of
https://github.com/encounter/ac-decomp.git
synced 2026-03-30 10:57:04 -07:00
22 lines
381 B
C
22 lines
381 B
C
#ifndef M_MSG_DATA_H
|
|
#define M_MSG_DATA_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define MSG_SANTA_WISH_FTR 0x2B54
|
|
#define MSG_SANTA_WISH_WALL 0x2B55
|
|
#define MSG_SANTA_WISH_CARPET 0x2B56
|
|
#define MSG_SANTA_WISH_CLOTH 0x2B57
|
|
|
|
#define MSG_MAX 0x3F91 /* Maximum message id */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|