You've already forked 2ship2harkinian-Android
mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-03-10 11:20:47 -07:00
Co-authored-by: Louis <35883445+louist103@users.noreply.github.com> Co-authored-by: Nicholas Estelami <NEstelami@users.noreply.github.com> Co-authored-by: Random06457 <28494085+Random06457@users.noreply.github.com>
14 lines
272 B
C
14 lines
272 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;
|
|
u32 msgSize;
|
|
} MessageTableEntry; // size = 0x8;
|
|
|
|
#endif
|