LeviLamina
Loading...
Searching...
No Matches
BaseGameTestAction.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace gametest { struct GameTestError; }
8// clang-format on
9
10namespace gametest {
11
13public:
14 // member variables
15 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 BaseGameTestAction& operator=(BaseGameTestAction const&);
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 // vIndex: 0
29 virtual ~BaseGameTestAction() = default;
30
31 // vIndex: 1
32 virtual ::std::optional<::gametest::GameTestError> run() = 0;
33 // NOLINTEND
34
35public:
36 // destructor thunk
37 // NOLINTBEGIN
38
39 // NOLINTEND
40
41public:
42 // virtual function thunks
43 // NOLINTBEGIN
44
45 // NOLINTEND
46};
47
48} // namespace gametest
Definition BaseGameTestAction.h:12
Definition Alias.h:14