LeviLamina
Loading...
Searching...
No Matches
RakNetGUID.h
1
#pragma once
2
3
#include "mc/_HeaderOutputPredefine.h"
4
5
namespace
RakNet {
6
7
struct
RakNetGUID {
8
public
:
9
// member variables
10
// NOLINTBEGIN
11
uint64 g;
12
ushort systemIndex;
13
// NOLINTEND
14
15
public
:
16
RakNetGUID() {
17
g = 0;
18
systemIndex = 0;
19
}
20
RakNetGUID(uint64 g, ushort systemIndex) : g(g), systemIndex(systemIndex) {}
21
22
public
:
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
36
public
:
37
// static functions
38
// NOLINTBEGIN
39
MCAPI
static
ulong ToUint32(
::RakNet::RakNetGUID
const
& g);
40
// NOLINTEND
41
42
public
:
43
// constructor thunks
44
// NOLINTBEGIN
45
MCAPI
void
* $ctor();
46
// NOLINTEND
47
};
48
49
}
// namespace RakNet
RakNet::RakNetGUID
Definition
RakNetGUID.h:7
src
mc
deps
raknet
RakNetGUID.h
Generated on
for LeviLamina by
1.16.1