LeviLamina
Loading...
Searching...
No Matches
RuntimeCondition.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting {
6
7struct RuntimeCondition {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<8, 32, ::std::string> id;
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 RuntimeCondition();
17
18public:
19 // member functions
20 // NOLINTBEGIN
21 MCAPI explicit RuntimeCondition(::std::string const& id);
22
23 MCAPI ~RuntimeCondition();
24 // NOLINTEND
25
26public:
27 // constructor thunks
28 // NOLINTBEGIN
29 MCFOLD void* $ctor(::std::string const& id);
30 // NOLINTEND
31
32public:
33 // destructor thunk
34 // NOLINTBEGIN
35 MCFOLD void $dtor();
36 // NOLINTEND
37};
38
39} // namespace Scripting