mirror of
https://github.com/pret/pmd-red.git
synced 2026-03-21 17:46:39 -05:00
14 lines
198 B
C
14 lines
198 B
C
#ifndef GUARD_STR_ITEM_TEXT_H
|
|
#define GUARD_STR_ITEM_TEXT_H
|
|
|
|
// size: 0x8
|
|
typedef struct ItemText
|
|
{
|
|
const u8 *desc;
|
|
const u8 *useText;
|
|
} ItemText;
|
|
|
|
extern const ItemText gActions[];
|
|
|
|
#endif
|