1
0

feat: fully refactor BMapInspector rule set for better layout

This commit is contained in:
2026-03-03 17:11:30 +08:00
parent 49a729078c
commit 4c71a20935
35 changed files with 1628 additions and 1428 deletions

View File

@@ -0,0 +1,22 @@
#pragma once
#include "../Rule.hpp"
namespace BMapInspector::Ruleset {
/**
* @brief speedystoneball Rule 1
* @details
* Physicalized object should not have scale factor, especially negative scale factor (mirror).
*/
class SSBRule1 : public Rule::IRule {
public:
SSBRule1();
virtual ~SSBRule1();
YYCC_DELETE_COPY_MOVE(SSBRule1)
public:
std::u8string_view GetRuleName() const override;
void Check(Reporter::Reporter& reporter, Map::Level& level) const override;
};
} // namespace BMapInspector::Ruleset