1
0

feat: initialize BMapInspector project

This commit is contained in:
2026-01-30 20:23:39 +08:00
parent 6b0d73177b
commit 8dfa4bd039
8 changed files with 237 additions and 1 deletions

View File

@@ -0,0 +1,27 @@
#include "Ruleset.hpp"
namespace BMapInspector::Ruleset {
#pragma region IRule
IRule::IRule() {}
IRule::~IRule() {}
#pragma endregion
#pragma region Rule Collection
RuleCollection::RuleCollection() : rules() {
// TODO: create instance for each rules.
}
RuleCollection::~RuleCollection() {}
const std::vector<IRule*>& RuleCollection::GetRules() const {
return this->rules;
}
#pragma endregion
} // namespace BMapInspector::Ruleset