LeviLamina
Loading...
Searching...
No Matches
CompoundTagUpdaterContext.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/CompoundTagUpdaterResult.h"
7
8// auto generated forward declare list
9// clang-format off
10class CompoundTag;
13// clang-format on
14
15class CompoundTagUpdaterContext {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<1, 1, uchar> mUpdaterVersion;
20 ::ll::TypedStorage<8, 24, ::std::vector<::std::unique_ptr<::CompoundTagUpdater>>> mUpdaters;
21 // NOLINTEND
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCAPI CompoundTagUpdaterContext();
27
28 MCAPI ::CompoundTagUpdaterNodeBuilder addUpdater(uchar const* const version);
29
30 MCAPI ::CompoundTagUpdaterNodeBuilder addUpdater(uchar major, uchar minor, uchar patch);
31
32 MCAPI ::CompoundTagUpdaterResult update(::CompoundTag& tag, uint version) const;
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38 MCAPI void* $ctor();
39 // NOLINTEND
40};
Definition CompoundTagUpdaterNodeBuilder.h:13
Definition CompoundTagUpdater.h:11
Definition CompoundTag.h:23