pokeplatinum/include/main.h
Eduardo Quezada fc03351879
Standarized OverlayManager names (#524)
* Standarized OverlayManager names

* Most "overlay" to "application"

* Other renames

* Last rename

* undo ov97_0222D30C.c changes
2025-05-26 12:50:57 -07:00

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