mirror of
https://github.com/risingPhil/PokeMe64.git
synced 2026-03-21 18:04:15 -05:00
- Add "Pikachu Bed" and "Tentacool Doll" decoration unlock options for gen 2 - bugfix for unsafe behaviour - attempt to make the RESET button work for cartridge switching. It failed though. (not reliable). Therefore I just added a warning message instead. - Work on new ScrollWidget for Credits/About screen (Work In Progress)
31 lines
618 B
C++
Executable File
31 lines
618 B
C++
Executable File
#ifndef _APPLICATION_H
|
|
#define _APPLICATION_H
|
|
|
|
#include "animations/AnimationManager.h"
|
|
#include "scenes/SceneManager.h"
|
|
#include "core/RDPQGraphics.h"
|
|
#include "core/FontManager.h"
|
|
#include "transferpak/TransferPakManager.h"
|
|
|
|
class Application
|
|
{
|
|
public:
|
|
Application();
|
|
~Application();
|
|
|
|
void init();
|
|
|
|
void run();
|
|
|
|
void onResetInterrupt();
|
|
protected:
|
|
private:
|
|
RDPQGraphics graphics_;
|
|
AnimationManager animationManager_;
|
|
FontManager fontManager_;
|
|
TransferPakManager tpakManager_;
|
|
SceneManager sceneManager_;
|
|
Rectangle sceneBounds_;
|
|
};
|
|
|
|
#endif |