LeviLamina
Loading...
Searching...
No Matches
ScriptGameTestConnectivity.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace ScriptModuleGameTest {
6
7class ScriptGameTestConnectivity {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<1, 1, bool> mNorth;
12 ::ll::TypedStorage<1, 1, bool> mEast;
13 ::ll::TypedStorage<1, 1, bool> mSouth;
14 ::ll::TypedStorage<1, 1, bool> mWest;
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 ScriptGameTestConnectivity& operator=(ScriptGameTestConnectivity const&);
20 ScriptGameTestConnectivity();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI ScriptGameTestConnectivity(::ScriptModuleGameTest::ScriptGameTestConnectivity const& other);
26
27 MCAPI ScriptGameTestConnectivity(bool north, bool east, bool south, bool west);
28 // NOLINTEND
29
30public:
31 // constructor thunks
32 // NOLINTBEGIN
33 MCAPI void* $ctor(::ScriptModuleGameTest::ScriptGameTestConnectivity const& other);
34
35 MCAPI void* $ctor(bool north, bool east, bool south, bool west);
36 // NOLINTEND
37};
38
39} // namespace ScriptModuleGameTest
Definition ScriptGameTestConnectivity.h:7