mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-06 11:01:38 +12:00
Add config class
This commit is contained in:
parent
90a88eee39
commit
bc3377ac78
6 changed files with 75 additions and 2 deletions
10
include/config.hpp
Normal file
10
include/config.hpp
Normal file
|
@ -0,0 +1,10 @@
|
|||
#pragma once
|
||||
#include <filesystem>
|
||||
|
||||
// Remember to initialize everything field here to its default value otherwise bad things will happen
|
||||
struct EmulatorConfig {
|
||||
bool shaderJitEnabled = false;
|
||||
|
||||
void load(const std::filesystem::path& path);
|
||||
void save(const std::filesystem::path& path);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue