mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
* Standarized OverlayManager names * Most "overlay" to "application" * Other renames * Last rename * undo ov97_0222D30C.c changes
25 lines
480 B
C
25 lines
480 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 ApplicationManagerTemplate *template);
|
|
void InitRNG(void);
|
|
void HandleConsoleFold(void);
|
|
|
|
#endif // POKEPLATINUM_MAIN_H
|