Zelda64Recomp/include/recomp_config.h
2024-03-03 21:17:59 -05:00

20 lines
411 B
C++

#ifndef __RECOMP_CONFIG_H__
#define __RECOMP_CONFIG_H__
#include <filesystem>
#include <string_view>
#include "../ultramodern/config.hpp"
namespace recomp {
constexpr std::u8string_view program_id = u8"Zelda64Recompiled";
void load_config();
void save_config();
void reset_input_bindings();
void reset_graphics_options();
std::filesystem::path get_app_folder_path();
};
#endif