LeviLamina
Loading...
Searching...
No Matches
StructurePoolActorRule.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8// clang-format on
9
10class StructurePoolActorRule {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::IStructurePoolActorPredicate> const> mSourcePredicate;
15 ::ll::TypedStorage<8, 32, ::std::string const> mResultActor;
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 StructurePoolActorRule();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI StructurePoolActorRule(
26 ::std::unique_ptr<::IStructurePoolActorPredicate>&& sourceActorPredicate,
27 ::std::string resultActor
28 );
29
30 MCAPI ~StructurePoolActorRule();
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36 MCAPI void*
37 $ctor(::std::unique_ptr<::IStructurePoolActorPredicate>&& sourceActorPredicate, ::std::string resultActor);
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43 MCFOLD void $dtor();
44 // NOLINTEND
45};
Definition IStructurePoolActorPredicate.h:10