LeviLamina
Loading...
Searching...
No Matches
CompoundTagUpdater.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class CompoundTag;
8// clang-format on
9
10class CompoundTagUpdater {
11public:
12 // CompoundTagUpdater inner types declare
13 // clang-format off
14 struct Node;
15 // clang-format on
16
17 // CompoundTagUpdater inner types define
18 struct Node {
19 public:
20 // member variables
21 // NOLINTBEGIN
25 // NOLINTEND
26
27 public:
28 // prevent constructor by default
29 Node& operator=(Node const&);
30 Node(Node const&);
31 Node();
32 };
33
34public:
35 // member variables
36 // NOLINTBEGIN
39 // NOLINTEND
40
41public:
42 // prevent constructor by default
43 CompoundTagUpdater& operator=(CompoundTagUpdater const&);
44 CompoundTagUpdater(CompoundTagUpdater const&);
45 CompoundTagUpdater();
46
47public:
48 // member functions
49 // NOLINTBEGIN
50 MCNAPI bool _update(::CompoundTagUpdater::Node const& node, ::CompoundTag& tag) const;
51 // NOLINTEND
52};
MCAPI bool _update(::CompoundTagUpdater::Node const &node, ::CompoundTag &tag) const
Definition CompoundTag.h:23
Definition CompoundTagUpdater.h:18
Definition Alias.h:14