LeviLamina
Loading...
Searching...
No Matches
PermuteType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/shared_types/util/Reference.h"
7
8namespace SharedTypes::Legacy::Spawn {
9
10struct PermuteType {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<4, 4, int> mWeight;
15 ::ll::TypedStorage<4, 4, int> mMinGuaranteed;
16 ::ll::TypedStorage<8, 32, ::SharedTypes::Reference<1>> mEntityType;
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 PermuteType(PermuteType const&);
22 PermuteType();
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCFOLD ::SharedTypes::Legacy::Spawn::PermuteType& operator=(::SharedTypes::Legacy::Spawn::PermuteType&&);
28
29 MCFOLD ::SharedTypes::Legacy::Spawn::PermuteType& operator=(::SharedTypes::Legacy::Spawn::PermuteType const&);
30
31 MCAPI ~PermuteType();
32 // NOLINTEND
33
34public:
35 // destructor thunk
36 // NOLINTBEGIN
37 MCFOLD void $dtor();
38 // NOLINTEND
39};
40
41} // namespace SharedTypes::Legacy::Spawn
Definition PermuteType.h:10