LeviLamina
Loading...
Searching...
No Matches
Test.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_rules/TestType.h"
7
8// auto generated forward declare list
9// clang-format off
10class Block;
11class IRandom;
12namespace Util { class XXHash; }
13namespace br::worldgen::processors::BlockRules { struct AlwaysTrue; }
14namespace br::worldgen::processors::BlockRules { struct BlockMatch; }
15namespace br::worldgen::processors::BlockRules { struct RandomBlockMatch; }
16namespace br::worldgen::processors::BlockRules { struct TagMatch; }
17// clang-format on
18
19namespace br::worldgen::processors::BlockRules {
20
22public:
23 // Test inner types define
24 using Type = ::std::variant<
29
30public:
31 // member variables
32 // NOLINTBEGIN
33 ::ll::TypedStorage<
34 8,
35 64,
36 ::std::variant<
41 mData;
42 // NOLINTEND
43
44public:
45 // prevent constructor by default
46 Test& operator=(Test const&);
47
48public:
49 // virtual functions
50 // NOLINTBEGIN
51 // vIndex: 1
52 virtual bool test(::Block const& block, ::IRandom& random) const /*override*/;
53
54 // vIndex: 2
55 virtual void appendMetadataKey(::Util::XXHash& hash) const /*override*/;
56
57 // vIndex: 0
58 virtual ~Test() /*override*/;
59 // NOLINTEND
60
61public:
62 // member functions
63 // NOLINTBEGIN
65
67 // NOLINTEND
68
69public:
70 // constructor thunks
71 // NOLINTBEGIN
73
74 MCAPI void* $ctor(::br::worldgen::processors::BlockRules::Test const&);
75 // NOLINTEND
76
77public:
78 // destructor thunk
79 // NOLINTBEGIN
80 MCAPI void $dtor();
81 // NOLINTEND
82
83public:
84 // virtual function thunks
85 // NOLINTBEGIN
86 MCAPI bool $test(::Block const& block, ::IRandom& random) const;
87
88 MCAPI void $appendMetadataKey(::Util::XXHash& hash) const;
89 // NOLINTEND
90
91public:
92 // vftables
93 // NOLINTBEGIN
94 MCAPI static void** $vftable();
95 // NOLINTEND
96};
97
98} // namespace br::worldgen::processors::BlockRules
Definition Block.h:36
Definition IRandom.h:10
Definition XXHash.h:7