PokeMe64/include/core/Application.h
Philippe Symons f7a687b147 Various changes
- 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)
2024-07-31 22:29:21 +02:00

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