mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-08 03:51:39 +12:00
Add config class
This commit is contained in:
parent
90a88eee39
commit
bc3377ac78
6 changed files with 75 additions and 2 deletions
|
@ -9,6 +9,7 @@
|
|||
|
||||
#include "PICA/gpu.hpp"
|
||||
#include "cpu.hpp"
|
||||
#include "config.hpp"
|
||||
#include "crypto/aes_engine.hpp"
|
||||
#include "io_file.hpp"
|
||||
#include "memory.hpp"
|
||||
|
@ -24,6 +25,7 @@ class Emulator {
|
|||
Crypto::AESEngine aesEngine;
|
||||
|
||||
GLStateManager gl;
|
||||
EmulatorConfig config;
|
||||
SDL_Window* window;
|
||||
SDL_GLContext glContext;
|
||||
SDL_GameController* gameController = nullptr;
|
||||
|
@ -49,6 +51,7 @@ class Emulator {
|
|||
|
||||
public:
|
||||
Emulator();
|
||||
~Emulator();
|
||||
|
||||
void step();
|
||||
void render();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue