mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
10 lines
No EOL
291 B
C++
10 lines
No EOL
291 B
C++
#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);
|
|
}; |