mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-21 14:37:40 -05:00
21 lines
450 B
C
21 lines
450 B
C
#ifndef GUARD_ADVENTURE_LOG_H
|
|
#define GUARD_ADVENTURE_LOG_H
|
|
|
|
#include "structs/menu.h"
|
|
#include "structs/str_text.h"
|
|
|
|
// size: 0xA0
|
|
typedef struct AdventureLog
|
|
{
|
|
/* 0x0 */ MenuInputStruct input;
|
|
u32 unk34;
|
|
UnkTextStruct2 *unk38;
|
|
UnkTextStruct2 unk3C[4];
|
|
u8 unk9C[4];
|
|
} AdventureLog;
|
|
|
|
void CleanAdventureLogScreen(void);
|
|
bool8 CreateAdventureLogScreen(u32 kind);
|
|
u32 HandleAdventureLogInput(bool8);
|
|
|
|
#endif // GUARD_ADVENTURE_LOG_H
|