1
0
Files
libcmo21/Ballance/BMapInspector/Rule/ChirsRules.hpp

23 lines
516 B
C++
Raw Normal View History

#pragma once
#include "../Rule.hpp"
namespace BMapInspector::Rule {
/**
2026-02-24 14:24:02 +08:00
* @brief chirs241097 Rule 1
* @details
* This rule will make sure that there is only 1 texture named Laterne_Verlauf in map,
* which represent the ray of latern.
*/
2026-02-24 14:24:02 +08:00
class ChirsRule1 : public IRule {
public:
2026-02-24 14:24:02 +08:00
ChirsRule1();
virtual ~ChirsRule1();
YYCC_DELETE_COPY_MOVE(ChirsRule1)
public:
std::u8string_view GetRuleName() const override;
void Check(Reporter::Reporter& reporter, Map::Level& level) const override;
};
}