mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-15 17:30:27 +08:00
24 lines
391 B
C++
24 lines
391 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "json_object.h"
|
|
|
|
namespace asst {
|
|
class Configer
|
|
{
|
|
public:
|
|
~Configer() = default;
|
|
|
|
static bool reload();
|
|
static std::string getCurDir();
|
|
static std::string getResDir();
|
|
static json::object dataObj;
|
|
static json::object handleObj;
|
|
static json::object optionsObj;
|
|
private:
|
|
Configer() = default;
|
|
|
|
static std::string m_curDir;
|
|
};
|
|
}
|