mirror of
https://github.com/zeldaret/mm.git
synced 2026-08-08 10:32:59 -04:00
13 lines
254 B
C
13 lines
254 B
C
#ifndef MESSAGE_DATA_STATIC_H
|
|
#define MESSAGE_DATA_STATIC_H
|
|
|
|
#include "PR/ultratypes.h"
|
|
|
|
typedef struct MessageTableEntry{
|
|
/* 0x0 */ u16 textId;
|
|
/* 0x2 */ u8 typePos;
|
|
/* 0x4 */ const char* segment;
|
|
} MessageTableEntry; // size = 0x8;
|
|
|
|
#endif
|