mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2024-12-29 18:23:05 +00:00
17 lines
333 B
C
17 lines
333 B
C
|
#ifndef __RECOMP_CONFIG_H__
|
||
|
#define __RECOMP_CONFIG_H__
|
||
|
|
||
|
#include <string_view>
|
||
|
#include "../ultramodern/config.hpp"
|
||
|
|
||
|
namespace recomp {
|
||
|
constexpr std::u8string_view program_id = u8"ZeldaRecomp";
|
||
|
|
||
|
void load_config();
|
||
|
void save_config();
|
||
|
|
||
|
void reset_input_bindings();
|
||
|
void reset_graphics_options();
|
||
|
};
|
||
|
|
||
|
#endif
|