Panda3DS/include/config.hpp
wheremyfoodat c4878ec4b4 Update comments
Co-Authored-By: Mireille <13669774+fleroviux@users.noreply.github.com>
2023-07-08 16:38:44 +03:00

10 lines
No EOL
286 B
C++

#pragma once
#include <filesystem>
// Remember to initialize every 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);
};