LeviLamina
Loading...
Searching...
No Matches
ModifierType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class CompoundTag;
8class IRandom;
9namespace Util { class XXHash; }
10// clang-format on
11
12namespace br::worldgen::processors::BlockEntity {
13
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 virtual ~ModifierType() = default;
19
20 virtual ::std::unique_ptr<::CompoundTag> apply(::IRandom&, ::CompoundTag const*) const = 0;
21
22 virtual void appendMetadataKey(::Util::XXHash&) const = 0;
23 // NOLINTEND
24
25public:
26 // virtual function thunks
27 // NOLINTBEGIN
28
29 // NOLINTEND
30};
31
32} // namespace br::worldgen::processors::BlockEntity
Definition CompoundTag.h:23
Definition IRandom.h:13
Definition XXHash.h:7