mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-23 12:46:23 -05:00
23 lines
522 B
C
23 lines
522 B
C
#ifndef POKEHEARTGOLD_BLACKOUT_H
|
|
#define POKEHEARTGOLD_BLACKOUT_H
|
|
|
|
#include "global.h"
|
|
#include "field_system.h"
|
|
#include "message_format.h"
|
|
#include "msgdata.h"
|
|
#include "task.h"
|
|
|
|
typedef struct BlackoutScreenEnvironment {
|
|
s32 state;
|
|
FieldSystem *fieldSystem;
|
|
BgConfig *bgConfig;
|
|
Window window;
|
|
MsgData *msgData;
|
|
MessageFormat *msgFmt;
|
|
} BlackoutScreenEnvironment;
|
|
|
|
BOOL Task_Blackout(TaskManager *taskManager);
|
|
void CallTask_Blackout(TaskManager *taskManager);
|
|
|
|
#endif //POKEHEARTGOLD_BLACKOUT_H
|