LeviLamina
Loading...
Searching...
No Matches
StructurePoolBlockPredicateCappedArcheologyBlockReplacement.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/actor/BrushableBlockActor.h"
7#include "mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateCappedRandomBlockReplacement.h"
8#include "mc/world/level/levelgen/structure/structurepools/StructurePoolBlockPredicateType.h"
9
10// auto generated forward declare list
11// clang-format off
12class BlockSource;
13class HashedString;
14class IRandom;
15// clang-format on
16
17class StructurePoolBlockPredicateCappedArcheologyBlockReplacement
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 32, ::std::string const> mLootTable;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 StructurePoolBlockPredicateCappedArcheologyBlockReplacement();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual bool finalize(::BlockSource& region, ::IRandom& random) /*override*/;
33
34 virtual ::std::string validate() const /*override*/;
35
36 virtual ::StructurePoolBlockPredicateType getType() const /*override*/;
37
38 virtual bool operator==(::StructurePoolBlockPredicateCappedArcheologyBlockReplacement const& other) const;
39
40 virtual bool operator!=(::StructurePoolBlockPredicateCappedArcheologyBlockReplacement const& other) const;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI StructurePoolBlockPredicateCappedArcheologyBlockReplacement(
47 ::std::map<::HashedString, ::HashedString> const& blockMappings,
48 uint maximumAmount,
49 ::BrushableBlockActor::Placement placement
50 );
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCAPI void* $ctor(
57 ::std::map<::HashedString, ::HashedString> const& blockMappings,
58 uint maximumAmount,
59 ::BrushableBlockActor::Placement placement
60 );
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCAPI bool $finalize(::BlockSource& region, ::IRandom& random);
67
68 MCAPI ::std::string $validate() const;
69
70 MCFOLD ::StructurePoolBlockPredicateType $getType() const;
71
72
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCNAPI static void** $vftable();
79 // NOLINTEND
80};
Definition BlockSource.h:73
Definition HashedString.h:5
Definition IRandom.h:10
Definition StructurePoolBlockPredicateCappedRandomBlockReplacement.h:22