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 bool FromString(char const* source);
26
27 MCAPI ::std::string ToString() const;
28
29 MCAPI bool operator!=(::RakNet::RakNetGUID const& right) const;
30
31 MCAPI bool operator<(::RakNet::RakNetGUID const& right) const;
32
33 MCFOLD bool operator==(::RakNet::RakNetGUID const& right) const;
34 // NOLINTEND
35
36public:
37 // static functions
38 // NOLINTBEGIN
39 MCAPI static ulong ToUint32(::RakNet::RakNetGUID const& g);
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor();
46 // NOLINTEND
47};
48
49} // namespace RakNet
Definition RakNetGUID.h:7