mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-07 15:15:05 +01:00
17 lines
339 B
C++
17 lines
339 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"Zelda64Recompiled";
|
|
|
|
void load_config();
|
|
void save_config();
|
|
|
|
void reset_input_bindings();
|
|
void reset_graphics_options();
|
|
};
|
|
|
|
#endif |