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 // virtual function thunks
40 // NOLINTBEGIN
41 MCFOLD ::Bedrock::Result<void> $load(::IDataInput& dis);
42
43 MCFOLD void $write(::IDataOutput& dos) const;
44
45 MCFOLD ::Tag::Type $getId() const;
46
47 MCAPI ::std::string $toString() const;
48
49 MCAPI ::std::unique_ptr<::Tag> $copy() const;
50
51 MCFOLD bool $equals(::Tag const& rhs) const;
52
53 MCFOLD uint64 $hash() const;
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
Definition EndTag.h:9
static MCAPI void ** $vftable()
Definition IDataInput.h:8
Definition IDataOutput.h:5
Definition Tag.h:39