ocarina/include/libsaria/prefs.h

20 lines
236 B
C++

#ifndef LIBSARIA_PREFS_H
#define LIBSARIA_PREFS_H
#include <string>
using namespace std;
namespace libsaria
{
namespace prefs
{
void load();
void set(string, bool);
bool get_bool(string);
}
}
#endif /* LIBSARIA_PREFS_H */