2026-02-04 20:46:04 +08:00
|
|
|
#pragma once
|
|
|
|
|
#include "../Rule.hpp"
|
|
|
|
|
|
2026-03-03 17:11:30 +08:00
|
|
|
namespace BMapInspector::Ruleset {
|
2026-02-04 20:46:04 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief SomeOne_001 Rule 1
|
|
|
|
|
* @details
|
|
|
|
|
* If there is a physicalized object without any mesh,
|
|
|
|
|
* itself and following objects will not be physicalized.
|
|
|
|
|
*/
|
2026-03-03 17:11:30 +08:00
|
|
|
class SOneRule1 : public Rule::IRule {
|
2026-02-04 20:46:04 +08:00
|
|
|
public:
|
|
|
|
|
SOneRule1();
|
|
|
|
|
virtual ~SOneRule1();
|
|
|
|
|
YYCC_DELETE_COPY_MOVE(SOneRule1)
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
std::u8string_view GetRuleName() const override;
|
|
|
|
|
void Check(Reporter::Reporter& reporter, Map::Level& level) const override;
|
|
|
|
|
};
|
|
|
|
|
|
2026-03-03 17:11:30 +08:00
|
|
|
} // namespace BMapInspector::Ruleset
|