LeviLamina
Loading...
Searching...
No Matches
EndTag.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/nbt/Tag.h"
7#include "mc/platform/Result.h"
8
9class EndTag : public ::Tag {
10public:
11 // virtual functions
12 // NOLINTBEGIN
13 // vIndex: 3
14 virtual ::Bedrock::Result<void> load(::IDataInput& dis) /*override*/;
15
16 // vIndex: 2
17 virtual void write(::IDataOutput& dos) const /*override*/;
18
19 // vIndex: 5
20 virtual ::Tag::Type getId() const /*override*/;
21
22 // vIndex: 4
23 virtual ::std::string toString() const /*override*/;
24
25 // vIndex: 9
26 virtual ::std::unique_ptr<::Tag> copy() const /*override*/;
27
28 // vIndex: 6
29 virtual bool equals(::Tag const& rhs) const /*override*/;
30
31 // vIndex: 10
32 virtual uint64 hash() const /*override*/;
33
34 // vIndex: 0
35 virtual ~EndTag() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCFOLD ::Bedrock::Result<void> $load(::IDataInput& dis);
48
49 MCFOLD void $write(::IDataOutput& dos) const;
50
51 MCFOLD ::Tag::Type $getId() const;
52
53 MCAPI ::std::string $toString() const;
54
55 MCAPI ::std::unique_ptr<::Tag> $copy() const;
56
57 MCFOLD bool $equals(::Tag const& rhs) const;
58
59 MCFOLD uint64 $hash() const;
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCAPI static void** $vftable();
66 // NOLINTEND
67};
Definition EndTag.h:9
Definition IDataInput.h:8
Definition IDataOutput.h:5
Definition Tag.h:39