2023-09-30 05:45:35 +08:00
|
|
|
#include "base/datBase.hpp"
|
|
|
|
#include "base/fwExtensibleBase.hpp"
|
|
|
|
#include "base/fwRefAwareBase.hpp"
|
|
|
|
#include "base/fwRefAwareBaseImpl.hpp"
|
|
|
|
#include "entity/fwEntity.hpp"
|
2023-10-09 21:01:36 +08:00
|
|
|
#include "network/sync/object/CObjectCreationData.hpp"
|
2023-11-10 04:09:45 +08:00
|
|
|
#include "network/sync/ped/CPedAttachData.hpp"
|
2023-10-09 21:01:36 +08:00
|
|
|
#include "network/sync/ped/CPedCreationData.hpp"
|
|
|
|
#include "network/sync/ped/CPedTaskTreeData.hpp"
|
|
|
|
#include "network/sync/physical/CPhysicalAttachData.hpp"
|
|
|
|
#include "network/sync/pickup/CPickupCreationData.hpp"
|
|
|
|
#include "network/sync/player/CPlayerAppearanceData.hpp"
|
2023-11-10 04:09:45 +08:00
|
|
|
#include "network/sync/player/CPlayerHealthData.hpp"
|
2023-10-09 21:01:36 +08:00
|
|
|
#include "network/sync/vehicle/CVehicleCreationData.hpp"
|
|
|
|
#include "network/sync/vehicle/CVehicleProximityMigrationData.hpp"
|
2024-06-14 05:03:39 +08:00
|
|
|
#include "network/sync/vehicle/CVehicleGadgetData.hpp"
|
2023-10-09 21:01:36 +08:00
|
|
|
#include "network/sync/CProjectBaseSyncDataNode.hpp"
|
|
|
|
#include "network/sync/netSyncDataNode.hpp"
|
|
|
|
#include "network/sync/netSyncNodeBase.hpp"
|
|
|
|
#include "network/sync/netSyncTree.hpp"
|
|
|
|
#include "network/sync/NodeCommonDataOperations.hpp"
|
2023-08-27 03:12:04 +08:00
|
|
|
#include "network/CNetGamePlayer.hpp"
|
|
|
|
#include "network/CNetworkPlayerMgr.hpp"
|
2023-10-09 21:01:36 +08:00
|
|
|
#include "network/CScriptedGameEvent.hpp"
|
|
|
|
#include "network/netGameEvent.hpp"
|
2023-09-30 05:45:35 +08:00
|
|
|
#include "network/netObject.hpp"
|
2023-08-27 03:12:04 +08:00
|
|
|
#include "network/netPeerAddress.hpp"
|
|
|
|
#include "network/netPlayer.hpp"
|
|
|
|
#include "network/netPlayerMgrBase.hpp"
|
|
|
|
#include "network/rlGamerHandle.hpp"
|
|
|
|
#include "network/rlGamerInfoBase.hpp"
|
|
|
|
#include "network/rlGamerInfo.hpp"
|
|
|
|
#include "player/CPlayerInfo.hpp"
|
2023-09-30 05:45:35 +08:00
|
|
|
#include "ped/CPed.hpp"
|
2023-08-27 18:21:16 +08:00
|
|
|
#include "rage/atArray.hpp"
|
2023-10-09 21:01:36 +08:00
|
|
|
#include "rage/atPlayerBits.hpp"
|
2023-11-10 04:09:45 +08:00
|
|
|
#include "rage/datBitBuffer.hpp"
|
2024-06-14 05:05:36 +08:00
|
|
|
#include "rage/fwBasePool.hpp"
|
2023-08-27 03:12:04 +08:00
|
|
|
#include "rage/joaat.hpp"
|
2024-06-14 05:05:36 +08:00
|
|
|
#include "rage/pools.hpp"
|
2023-09-24 05:47:58 +08:00
|
|
|
#include "rage/rlJson.hpp"
|
|
|
|
#include "rage/rlMetric.hpp"
|
|
|
|
#include "rage/tlsContext.hpp"
|
2023-08-27 03:12:04 +08:00
|
|
|
#include "rage/vector.hpp"
|
|
|
|
#include "script/scriptHandlerNetComponent.hpp"
|
2023-10-09 21:01:36 +08:00
|
|
|
#include "script/scriptId.hpp"
|
|
|
|
#include "script/scriptIdBase.hpp"
|
2023-08-27 03:12:04 +08:00
|
|
|
#include "script/scrNativeHandler.hpp"
|
|
|
|
#include "script/scrThread.hpp"
|
|
|
|
#include "script/scrThreadContext.hpp"
|
|
|
|
#include "script/scrVector.hpp"
|
2024-06-14 05:04:16 +08:00
|
|
|
#include "script/types.hpp"
|
2024-06-14 05:05:36 +08:00
|
|
|
#include "rage/Guid.hpp"
|