2026-02-02 22:26:41 +08:00
|
|
|
#pragma once
|
|
|
|
|
#include "../Rule.hpp"
|
|
|
|
|
|
|
|
|
|
namespace BMapInspector::Rule {
|
|
|
|
|
|
2026-02-05 14:38:25 +08:00
|
|
|
/**
|
|
|
|
|
* @brief BBug Rule 1
|
|
|
|
|
* @details
|
|
|
|
|
* Using light in map is not suggested.
|
|
|
|
|
*/
|
|
|
|
|
class BBugRule1 : public IRule {
|
|
|
|
|
public:
|
|
|
|
|
BBugRule1();
|
|
|
|
|
virtual ~BBugRule1();
|
|
|
|
|
YYCC_DELETE_COPY_MOVE(BBugRule1)
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
std::u8string_view GetRuleName() const override;
|
|
|
|
|
void Check(Reporter::Reporter& reporter, Map::Level& level) const override;
|
|
|
|
|
};
|
|
|
|
|
|
2026-02-02 22:26:41 +08:00
|
|
|
}
|