mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-22 10:15:22 -05:00
25 lines
476 B
C
25 lines
476 B
C
#ifndef POKEPLATINUM_MAIN_H
|
|
#define POKEPLATINUM_MAIN_H
|
|
|
|
#include <nitro/fs.h>
|
|
|
|
#include "overlay_manager.h"
|
|
#include "savedata.h"
|
|
|
|
enum OSResetParameter {
|
|
RESET_CLEAN = 0,
|
|
RESET_ERROR,
|
|
};
|
|
|
|
typedef struct ApplicationArgs {
|
|
int unk_00;
|
|
BOOL error;
|
|
SaveData *saveData;
|
|
} ApplicationArgs;
|
|
|
|
void EnqueueApplication(FSOverlayID overlayID, const OverlayManagerTemplate *template);
|
|
void InitRNG(void);
|
|
void HandleConsoleFold(void);
|
|
|
|
#endif // POKEPLATINUM_MAIN_H
|