mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
* Add discord-rpc submodule * Add Discord RPC * Fix up Discord status * Fix CMake because MacOS sucks * Slightly less hacky fix
15 lines
No EOL
447 B
C++
15 lines
No EOL
447 B
C++
#pragma once
|
|
#include <filesystem>
|
|
|
|
#include "renderer.hpp"
|
|
|
|
// Remember to initialize every field here to its default value otherwise bad things will happen
|
|
struct EmulatorConfig {
|
|
bool shaderJitEnabled = false;
|
|
bool discordRpcEnabled = false;
|
|
RendererType rendererType = RendererType::OpenGL;
|
|
|
|
EmulatorConfig(const std::filesystem::path& path);
|
|
void load(const std::filesystem::path& path);
|
|
void save(const std::filesystem::path& path);
|
|
}; |