LeviLamina
Loading...
Searching...
No Matches
RakNetGUID.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace RakNet {
6
7struct RakNetGUID {
8public:
9 // member variables
10 // NOLINTBEGIN
11 uint64 g;
12 ushort systemIndex;
13 // NOLINTEND
14
15public:
16 RakNetGUID() {
17 g = 0;
18 systemIndex = 0;
19 }
20 RakNetGUID(uint64 g, ushort systemIndex) : g(g), systemIndex(systemIndex) {}
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI_C ::std::string ToString() const;
26 // NOLINTEND
27};
28
29} // namespace RakNet