LeviLamina
Loading...
Searching...
No Matches
INetworkPayload.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::Network {
6
8public:
9 // virtual functions
10 // NOLINTBEGIN
11 virtual ~INetworkPayload() = default;
12
13 virtual char const* getPayloadName() const = 0;
14
15 virtual bool load(::std::string_view rawData) = 0;
16
17 virtual ::std::string save() const = 0;
18 // NOLINTEND
19};
20
21} // namespace Editor::Network
Definition INetworkPayload.h:7