mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2024-11-30 12:45:58 +00:00
15 lines
252 B
C++
15 lines
252 B
C++
#pragma once
|
|
|
|
#include <fw/singleton.h>
|
|
#include <nlohmann/json.hpp>
|
|
|
|
class config : public singleton<config> {
|
|
nlohmann::json* m_json;
|
|
|
|
bool m_unlock_fps;
|
|
bool m_prevent_minimize;
|
|
uint32_t m_gold_pickup_range;
|
|
|
|
public:
|
|
explicit config(token);
|
|
}; |