Panda3DS/include/config.hpp
2023-07-08 16:16:00 +03:00

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);
};