LeviLamina
Loading...
Searching...
No Matches
AlwaysTrue.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/v2/processors/pos_rules/TestType.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class IRandom;
12namespace Util { class XXHash; }
13// clang-format on
14
15namespace br::worldgen::processors::PosRules {
16
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 // vIndex: 1
22 virtual bool test(::BlockPos, ::BlockPos, ::BlockPos, ::IRandom&) const /*override*/;
23
24 // vIndex: 2
25 virtual void appendMetadataKey(::Util::XXHash& hash) const /*override*/;
26
27 // vIndex: 0
28 virtual ~AlwaysTrue() /*override*/ = default;
29 // NOLINTEND
30
31public:
32 // destructor thunk
33 // NOLINTBEGIN
34
35 // NOLINTEND
36
37public:
38 // virtual function thunks
39 // NOLINTBEGIN
40 MCFOLD bool $test(::BlockPos, ::BlockPos, ::BlockPos, ::IRandom&) const;
41
42 MCFOLD void $appendMetadataKey(::Util::XXHash& hash) const;
43 // NOLINTEND
44
45public:
46 // vftables
47 // NOLINTBEGIN
48 MCAPI static void** $vftable();
49 // NOLINTEND
50};
51
52} // namespace br::worldgen::processors::PosRules
Definition BlockPos.h:18
Definition IRandom.h:10
Definition XXHash.h:7