LeviLamina
Loading...
Searching...
No Matches
INetworkPayload.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
10namespace Editor::Network {
11
13public:
14 // virtual functions
15 // NOLINTBEGIN
16 virtual ~INetworkPayload() = default;
17
18 virtual char const* getPayloadName() const = 0;
19
20 virtual bool load(::CompoundTag const*) = 0;
21
22 virtual ::CompoundTag save() const = 0;
23 // NOLINTEND
24
25public:
26 // virtual function thunks
27 // NOLINTBEGIN
28
29 // NOLINTEND
30};
31
32} // namespace Editor::Network
Definition CompoundTag.h:23
Definition INetworkPayload.h:12