LeviLamina
Loading...
Searching...
No Matches
RuleSet.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/v2/processors/block_entity/Modifier.h"
7#include "mc/world/level/levelgen/v2/processors/block_rules/Test.h"
8#include "mc/world/level/levelgen/v2/processors/pos_rules/Test.h"
9
10// auto generated forward declare list
11// clang-format off
12class Block;
13// clang-format on
14
15namespace br::worldgen::processors {
16
17struct RuleSet {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 72, ::br::worldgen::processors::BlockRules::Test> mInputPredicate;
22 ::ll::TypedStorage<8, 72, ::br::worldgen::processors::BlockRules::Test> mLocPredicate;
23 ::ll::TypedStorage<4, 48, ::br::worldgen::processors::PosRules::Test> mPosPredicate;
24 ::ll::TypedStorage<8, 8, ::Block const*> mOutputState;
25 ::ll::TypedStorage<8, 56, ::br::worldgen::processors::BlockEntity::Modifier> mBlockEntityModifier;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 RuleSet& operator=(RuleSet const&);
31 RuleSet();
32
33public:
34 // member functions
35 // NOLINTBEGIN
37
39
40 MCAPI ::br::worldgen::processors::RuleSet& operator=(::br::worldgen::processors::RuleSet&&);
41
42 MCAPI ::br::worldgen::processors::RuleSet withLoc(::br::worldgen::processors::BlockRules::Test loc);
43
44 MCAPI ::br::worldgen::processors::RuleSet withModifier(::br::worldgen::processors::BlockEntity::Modifier modifier);
45
46 MCAPI ::br::worldgen::processors::RuleSet withPos(::br::worldgen::processors::PosRules::Test pos);
47
48 MCAPI ~RuleSet();
49 // NOLINTEND
50
51public:
52 // static functions
53 // NOLINTBEGIN
54 MCAPI static ::br::worldgen::processors::RuleSet
56 // NOLINTEND
57
58public:
59 // constructor thunks
60 // NOLINTBEGIN
61 MCAPI void* $ctor(::br::worldgen::processors::RuleSet const&);
62
63 MCAPI void* $ctor(::br::worldgen::processors::RuleSet&&);
64 // NOLINTEND
65
66public:
67 // destructor thunk
68 // NOLINTBEGIN
69 MCAPI void $dtor();
70 // NOLINTEND
71};
72
73} // namespace br::worldgen::processors
Definition Block.h:37
Definition RuleSet.h:17