-
Notifications
You must be signed in to change notification settings - Fork 9
/
classes.cpp
101 lines (101 loc) · 4.18 KB
/
classes.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#include "base/datBase.hpp"
#include "base/fwExtensibleBase.hpp"
#include "base/fwRefAwareBase.hpp"
#include "base/fwRefAwareBaseImpl.hpp"
#include "base/pgBase.hpp"
#include "entity/CDynamicEntity.hpp"
#include "entity/CEntity.hpp"
#include "entity/fwEntity.hpp"
#include "event/CEvent.hpp"
#include "event/CEventGroup.hpp"
#include "event/CEventInventoryItemPickedUp.hpp"
#include "network/CFriend.hpp"
#include "network/CNetGamePlayer.hpp"
#include "network/CNetworkPlayerMgr.hpp"
#include "network/CNetworkScObjMgr.hpp"
#include "network/CNetworkScServerConnection.hpp"
#include "network/CNetworkScSession.hpp"
#include "network/CNetworkScSessionMultiplayerImpl.hpp"
#include "network/CNetworkScSessionPlayer.hpp"
#include "network/CScriptedGameEvent.hpp"
#include "network/InFrame.hpp"
#include "network/netEncryption.hpp"
#include "network/netGameEvent.hpp"
#include "network/netObject.hpp"
#include "network/netPeerAddress.hpp"
#include "network/netPlayer.hpp"
#include "network/netPlayerMgrBase.hpp"
#include "network/netServerMessages.hpp"
#include "network/rlGamerHandle.hpp"
#include "network/rlGamerInfo.hpp"
#include "network/rlGamerInfoBase.hpp"
#include "network/rlScPeerConnection.hpp"
#include "network/rlScSession.hpp"
#include "network/rlScSessionEvent.hpp"
#include "network/rlScSessionManagerImpl.hpp"
#include "network/rlScSessionMultiplayer.hpp"
#include "network/rlScSessionPeer.hpp"
#include "network/snConnectToPeerTask.hpp"
#include "network/sync/CProjectBaseSyncDataNode.hpp"
#include "network/sync/NodeCommonDataOperations.hpp"
#include "network/sync/netSyncDataNode.hpp"
#include "network/sync/netSyncNodeBase.hpp"
#include "network/sync/netSyncTree.hpp"
#include "network/sync/animal/CAnimalCreationData.hpp"
#include "network/sync/animscene/CAnimSceneCreationData.hpp"
#include "network/sync/animscene/CAnimSceneInfrequentData.hpp"
#include "network/sync/object/CObjectCreationData.hpp"
#include "network/sync/ped/CPedAttachData.hpp"
#include "network/sync/ped/CPedCreationData.hpp"
#include "network/sync/ped/CPedHealthData.hpp"
#include "network/sync/ped/CPedTaskTreeData.hpp"
#include "network/sync/ped/CPedVitalityData.hpp"
#include "network/sync/physical/CPhysicalAttachData.hpp"
#include "network/sync/pickup/CPickupCreationData.hpp"
#include "network/sync/player/CPlayerAppearanceData.hpp"
#include "network/sync/player/CPlayerCameraUncommonData.hpp"
#include "network/sync/player/CPlayerCreationData.hpp"
#include "network/sync/player/CPlayerGameStateUncommonData.hpp"
#include "network/sync/player/CPlayerHealthData.hpp"
#include "network/sync/projectile/CProjectileCreationData.hpp"
#include "network/sync/propset/CPropSetCreationData.hpp"
#include "network/sync/vehicle/CVehicleCreationData.hpp"
#include "network/sync/vehicle/CVehicleGadgetData.hpp"
#include "network/sync/vehicle/CVehicleProximityMigrationData.hpp"
#include "ped/CPed.hpp"
#include "physical/CPhysical.hpp"
#include "player/CPlayerInfo.hpp"
#include "rage/Guid.hpp"
#include "rage/atArray.hpp"
#include "rage/atDelegate.hpp"
#include "rage/atPlayerBits.hpp"
#include "rage/atUri.hpp"
#include "rage/datBitBuffer.hpp"
#include "rage/fwBasePool.hpp"
#include "rage/joaat.hpp"
#include "rage/pools.hpp"
#include "rage/rlJson.hpp"
#include "rage/rlMetric.hpp"
#include "rage/rlTaskStatus.hpp"
#include "rage/tlsContext.hpp"
#include "rage/vector.hpp"
#include "script/globals/ACEData.hpp"
#include "script/globals/ACEHostData.hpp"
#include "script/globals/FetchManagerHostData.hpp"
#include "script/globals/FMEManagerHostData.hpp"
#include "script/globals/GunForHireMissionData.hpp"
#include "script/globals/MPHostData.hpp"
#include "script/globals/NetCampHostData.hpp"
#include "script/globals/PlayerPersonaData.hpp"
#include "script/globals/PlayerStatusSyncData.hpp"
#include "script/globals/SessionManagerPlayerData.hpp"
#include "script/scrNativeHandler.hpp"
#include "script/scrThread.hpp"
#include "script/scrThreadContext.hpp"
#include "script/scrVector.hpp"
#include "script/scriptHandlerNetComponent.hpp"
#include "script/scriptId.hpp"
#include "script/scriptIdBase.hpp"
#include "script/scrProgram.hpp"
#include "script/types.hpp"
#include "train/CTrainConfig.hpp"