mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-19 18:47:55 +08:00
chore: breaking rename
This commit is contained in:
21
src/MaaCore/Config/AbstractConfig.h
Normal file
21
src/MaaCore/Config/AbstractConfig.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
|
||||
#include "AbstractResource.h"
|
||||
|
||||
namespace json
|
||||
{
|
||||
class value;
|
||||
}
|
||||
|
||||
namespace asst
|
||||
{
|
||||
class AbstractConfig : public AbstractResource
|
||||
{
|
||||
public:
|
||||
virtual ~AbstractConfig() override = default;
|
||||
virtual bool load(const std::filesystem::path& path) override;
|
||||
|
||||
protected:
|
||||
virtual bool parse(const json::value& json) = 0;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user