LeviLamina
Loading...
Searching...
No Matches
TM_World.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/raknet/PI2_LostConnectionReason.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace RakNet { struct RakNetGUID; }
11namespace RakNet { struct SystemAddress; }
12// clang-format on
13
14namespace RakNet {
15
16class TM_World {
17public:
18 // TM_World inner types declare
19 // clang-format off
20 struct JoinRequestHelper;
21 // clang-format on
22
23 // TM_World inner types define
25 public:
26 // member variables
27 // NOLINTBEGIN
32 // NOLINTEND
33
34 public:
35 // prevent constructor by default
36 JoinRequestHelper& operator=(JoinRequestHelper const&);
39 };
40
41public:
42 // member variables
43 // NOLINTBEGIN
55 // NOLINTEND
56
57public:
58 // prevent constructor by default
59 TM_World& operator=(TM_World const&);
60 TM_World(TM_World const&);
61 TM_World();
62
63public:
64 // virtual functions
65 // NOLINTBEGIN
66 // vIndex: 0
67 virtual ~TM_World() = default;
68
69 // vIndex: 1
70 virtual void
71 OnClosedConnection(::RakNet::SystemAddress const&, ::RakNet::RakNetGUID, ::RakNet::PI2_LostConnectionReason);
72
73 // vIndex: 2
74 virtual void OnNewConnection(::RakNet::SystemAddress const&, ::RakNet::RakNetGUID, bool);
75 // NOLINTEND
76
77public:
78 // destructor thunk
79 // NOLINTBEGIN
80
81 // NOLINTEND
82
83public:
84 // virtual function thunks
85 // NOLINTBEGIN
86
87 // NOLINTEND
88};
89
90} // namespace RakNet
Definition TM_World.h:16
Definition RakNetGUID.h:7
Definition SystemAddress.h:7
Definition TM_World.h:24
Definition Alias.h:14