LeviLamina
Loading...
Searching...
No Matches
IGameTestRuleHelper.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace gametest {
6
8public:
9 // virtual functions
10 // NOLINTBEGIN
11 virtual ~IGameTestRuleHelper() = default;
12
13 virtual void addRuleToClear(int) = 0;
14
15 virtual void clearRules() = 0;
16
17 virtual void restoreRules() = 0;
18 // NOLINTEND
19
20public:
21 // virtual function thunks
22 // NOLINTBEGIN
23
24 // NOLINTEND
25};
26
27} // namespace gametest
Definition IGameTestRuleHelper.h:7