LeviLamina
Loading...
Searching...
No Matches
SavedData.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 SavedData {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<1, 1, bool> mDirty;
15 ::ll::TypedStorage<8, 32, ::std::string> mId;
16 // NOLINTEND
17
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 // vIndex: 0
22 virtual ~SavedData();
23
24 // vIndex: 1
25 virtual void deserialize(::CompoundTag const&) = 0;
26
27 // vIndex: 2
28 virtual void serialize(::CompoundTag&) const = 0;
29 // NOLINTEND
30
31public:
32 // destructor thunk
33 // NOLINTBEGIN
34 MCAPI void $dtor();
35 // NOLINTEND
36
37public:
38 // virtual function thunks
39 // NOLINTBEGIN
40
41 // NOLINTEND
42
43public:
44 // vftables
45 // NOLINTBEGIN
46 MCAPI static void** $vftable();
47 // NOLINTEND
48};
Definition CompoundTag.h:13
Definition SavedData.h:10
Definition serialize.h:11