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