1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 11:19:10 +00:00

PubUtilLib part III

This commit is contained in:
2011-04-07 21:24:11 -07:00
parent 7f39558b23
commit 82a4fc867c
104 changed files with 453 additions and 192 deletions

View File

@ -21,3 +21,34 @@ add_subdirectory(plGLight)
add_subdirectory(plInterp)
add_subdirectory(plIntersect)
add_subdirectory(plJPEG)
add_subdirectory(plMath)
add_subdirectory(plMessage)
#add_subdirectory(plModifier) # TODO: PhysX
#add_subdirectory(plNetClient) # TODO: STLport
add_subdirectory(plNetClientComm)
add_subdirectory(plNetClientRecorder)
#add_subdirectory(plNetCommon) # TODO: STLport
add_subdirectory(plNetGameLib)
#add_subdirectory(plNetMessage)
#add_subdirectory(plNetTransport)
#add_subdirectory(plParticleSystem)
#add_subdirectory(plPhysical)
#add_subdirectory(plPhysX)
#add_subdirectory(plPipeline)
#add_subdirectory(plProgressMgr)
#add_subdirectory(plResMgr)
#add_subdirectory(plScene)
#add_subdirectory(plSDL)
#add_subdirectory(plSDLBrowser) # Not being used by any current slns
#add_subdirectory(plSockets)
#add_subdirectory(plStatGather)
#add_subdirectory(plStatusLog)
#add_subdirectory(plStreamLogger)
#add_subdirectory(plSurface)
#add_subdirectory(plTransform)
#add_subdirectory(plUnifiedTime)
#add_subdirectory(plUUID)
#add_subdirectory(plVault)
#add_subdirectory(plWinStrBlock) # Not being used by any current slns
#add_subdirectory(plWndCtrls) # Not being used by any current slns
#add_subdirectory(PubUtilInc)

View File

@ -0,0 +1,24 @@
include_directories("../../CoreLib")
include_directories("../../NucleusLib")
include_directories("../../PubUtilLib")
set(plMath_SOURCES
hsNoiseFunc.cpp
hsRadixSort.cpp
plAvg.cpp
plTriUtils.cpp
)
set(plMath_HEADERS
hsNoiseFunc.h
hsRadixSort.h
hsSearchVersion.h
plAvg.h
plRandom.h
plTriUtils.h
)
add_library(plMath STATIC ${plMath_SOURCES} ${plMath_HEADERS})
source_group("Source Files" FILES ${plMath_SOURCES})
source_group("Header Files" FILES ${plMath_HEADERS})

View File

@ -0,0 +1,131 @@
include_directories("../../CoreLib")
include_directories("../../NucleusLib/inc")
include_directories("../../NucleusLib")
include_directories("../../PubUtilLib")
set(plMessage_SOURCES
plAccountUpdateMsg.cpp
plAIMsg.cpp
plAnimCmdMsg.cpp
plAvatarMsg.cpp
plAvCoopMsg.cpp
plBulletMsg.cpp
plCaptureRenderMsg.cpp
plCCRMsg.cpp
plClimbMsg.cpp
plCollideMsg.cpp
plDynaDecalEnableMsg.cpp
plDynamicEnvMapMsg.cpp
plDynamicTextMsg.cpp
plInputEventMsg.cpp
plInputIfaceMgrMsg.cpp
plLayRefMsg.cpp
plLinkToAgeMsg.cpp
plListenerMsg.cpp
plLoadAgeMsg.cpp
plLoadAvatarMsg.cpp
plLoadCloneMsg.cpp
plLOSHitMsg.cpp
plLOSRequestMsg.cpp
plMatrixUpdateMsg.cpp
plMultistageMsg.cpp
plNCAgeJoinerMsg.cpp
plNetClientMgrMsg.cpp
plNetCommMsgs.cpp
plNetVoiceListMsg.cpp
plOneShotCallbacks.cpp
plOneShotMsg.cpp
plRenderRequestMsg.cpp
plRideAnimatedPhysMsg.cpp
plRippleShapeMsg.cpp
plSimInfluenceMsg.cpp
plSimStateMsg.cpp
plSwimMsg.cpp
plSynchEnableMsg.cpp
plTransitionMsg.cpp
plVaultNotifyMsg.cpp
)
set(plMessage_HEADERS
plAccountUpdateMsg.h
plActivatorMsg.h
plAgeLoadedMsg.h
plAIMsg.h
plAngularVelocityMsg.h
plAnimCmdMsg.h
plAvatarFootMsg.h
plAvatarMsg.h
plAvCoopMsg.h
plBulletMsg.h
plCaptureRenderMsg.h
plCCRMessageCreatable.h
plCCRMsg.h
plClimbEventMsg.h
plClimbMsg.h
plCollideMsg.h
plCondRefMsg.h
plConnectedToVaultMsg.h
plConsoleMsg.h
plDeviceRecreateMsg.h
plDynaDecalEnableMsg.h
plDynamicEnvMapMsg.h
plDynamicTextMsg.h
plElementRefMsg.h
plExcludeRegionMsg.h
plInputEventMsg.h
plInputIfaceMgrMsg.h
plInterestingPing.h
plLayRefMsg.h
plLightRefMsg.h
plLinearVelocityMsg.h
plLinkToAgeMsg.h
plListenerMsg.h
plLoadAgeMsg.h
plLoadAvatarMsg.h
plLoadCloneMsg.h
plLOSHitMsg.h
plLOSRequestMsg.h
plMatRefMsg.h
plMatrixUpdateMsg.h
plMemberUpdateMsg.h
plMeshRefMsg.h
plMessageCreatable.h
plMovieMsg.h
plMultistageMsg.h
plNCAgeJoinerMsg.h
plNetClientMgrMsg.h
plNetCommMsgs.h
plNetOwnershipMsg.h
plNetVoiceListMsg.h
plNodeCleanupMsg.h
plOneShotCallbacks.h
plOneShotMsg.h
plParticleUpdateMsg.h
plPickedMsg.h
plPreloaderMsg.h
plRenderMsg.h
plRenderRequestMsg.h
plReplaceGeometryMsg.h
plResMgrHelperMsg.h
plResponderMsg.h
plRideAnimatedPhysMsg.h
plRippleShapeMsg.h
plRoomLoadNotifyMsg.h
plShadowCastMsg.h
plSimInfluenceMsg.h
plSimStateMsg.h
plSpawnModMsg.h
plSpawnRequestMsg.h
plSwimMsg.h
plSynchEnableMsg.h
plTimerCallbackMsg.h
plTransitionMsg.h
plTriggerMsg.h
plUniqueIdsMsg.h
plVaultNotifyMsg.h
)
add_library(plMessage STATIC ${plMessage_SOURCES} ${plMessage_HEADERS})
source_group("Source Files" FILES ${plMessage_SOURCES})
source_group("Header Files" FILES ${plMessage_HEADERS})

View File

@ -31,7 +31,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsResMgr.h"
#include "hsStream.h"
#include "..\plAvatar\plArmatureMod.h"
#include "plAvatar/plArmatureMod.h"
///////////////////////////////////////////////////////////////////////////////

View File

@ -30,7 +30,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef NO_AV_MSGS
#include "hsGeometry3.h"
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class plAvBrainCritter;

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plAccountUpdateMsg_inc
#define plAccountUpdateMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class hsStream;
class hsResMgr;

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plActivatorMsg_inc
#define plActivatorMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsGeometry3.h"
class hsStream;

View File

@ -26,8 +26,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plAgeLoadedMsg_INC
#define plAgeLoadedMsg_INC
#include "../pnUtils/pnUtils.h"
#include "../pnMessage/plMessage.h"
#include "pnUtils/pnUtils.h"
#include "pnMessage/plMessage.h"
//
// A msg sent locally when pending pages are done loading or unloading.

View File

@ -23,8 +23,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include "../../NucleusLib/pnMessage/plSimulationMsg.h"
#include "../../CoreLib/hsGeometry3.h"
#include "pnMessage/plSimulationMsg.h"
#include "hsGeometry3.h"
class plAngularVelocityMsg : public plSimulationMsg
{
public:

View File

@ -27,12 +27,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plAnimCmdMsg_inc
#define plAnimCmdMsg_inc
#include "../pnMessage/plMessageWithCallbacks.h"
#include "pnMessage/plMessageWithCallbacks.h"
#include "hsBitVector.h"
#include "hsTemplates.h"
#include "hsGeometry3.h"
#include "../plInterp/plAnimEaseTypes.h"
#include "../plInterp/plAnimTimeConvert.h"
#include "plInterp/plAnimEaseTypes.h"
#include "plInterp/plAnimTimeConvert.h"
class plAGAnimInstance;

View File

@ -34,8 +34,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsResMgr.h"
// other
#include "../plAvatar/plAvatarMgr.h"
#include "../plAvatar/plCoopCoordinator.h"
#include "plAvatar/plAvatarMgr.h"
#include "plAvatar/plCoopCoordinator.h"
// plAvCoopMsg -----------
// ------------

View File

@ -35,7 +35,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// INCLUDES
//
/////////////////////////////////////////////////////////////////////////////////////////
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
/////////////////////////////////////////////////////////////////////////////////////////
//

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plAvatarFootMsg_inc
#define plAvatarFootMsg_inc
#include "../pnMessage/plEventCallbackMsg.h"
#include "pnMessage/plEventCallbackMsg.h"
class hsStream;
class hsResMgr;

View File

@ -29,11 +29,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsResMgr.h"
#include "../pnKeyedObject/plKey.h"
#include "../pnSceneObject/plSceneObject.h"
#include "pnKeyedObject/plKey.h"
#include "pnSceneObject/plSceneObject.h"
#ifndef SERVER
#include "../plAvatar/plAvBrain.h"
#include "plAvatar/plAvBrain.h"
#endif

View File

@ -28,10 +28,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plAvatarMsg_inc
#define plAvatarMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsBitVector.h"
#include "../plAvatar/plArmatureMod.h"
#include "../pnMessage/plEventCallbackMsg.h"
#include "plAvatar/plArmatureMod.h"
#include "pnMessage/plEventCallbackMsg.h"
class plSceneObject;
class hsStream;

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plBulletMsg_inc
#define plBulletMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsGeometry3.h"
class plBulletMsg : public plMessage

View File

@ -26,9 +26,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsStream.h"
#include "plCCRMsg.h"
#include "../pnNetCommon/plNetApp.h"
#include "../plResMgr/plResManager.h"
#include "../plNetCommon/plNetCommon.h"
#include "pnNetCommon/plNetApp.h"
#include "plResMgr/plResManager.h"
#include "plNetCommon/plNetCommon.h"
void plCCRPetitionMsg::Read(hsStream* stream, hsResMgr* mgr)
{

View File

@ -26,8 +26,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plCCRMsg_h
#define plCCRMsg_h
#include "../pnMessage/plMessage.h"
#include "../plNetCommon/plNetCommon.h"
#include "pnMessage/plMessage.h"
#include "plNetCommon/plNetCommon.h"
//
// Abstract Baseclass for CCR messages.

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTypes.h"
#include "plCaptureRenderMsg.h"
#include "../plGImage/plMipmap.h"
#include "plGImage/plMipmap.h"
plCaptureRenderMsg::~plCaptureRenderMsg()
{

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plCaptureRenderMsg_inc
#define plCaptureRenderMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class plMipmap;

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plClimbEventMsg_h_inc
#define plClimbEventMsg_h_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plClimbMsg_h
#define plClimbMsg_h
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
/** \class plClimbMsg
Things you can say with a climb message:

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef PLCOLLIDEMSG_INC
#define PLCOLLIDEMSG_INC
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class plCollideMsg : public plMessage
{

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plCondRefMsg_inc
#define plCondRefMsg_inc
#include "../pnMessage/plRefMsg.h"
#include "pnMessage/plRefMsg.h"
#include "hsStream.h"
class hsResMgr;

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plConnectedToVaultMsg_INC
#define plConnectedToVaultMsg_INC
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
//
// A msg sent locally (once) when the client has successfully connected to the vault.

View File

@ -29,7 +29,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plConsoleMsg_inc
#define plConsoleMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class plEventCallbackMsg;

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef _plDeviceRecreateMsg_h
#define _plDeviceRecreateMsg_h
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class plDeviceRecreateMsg : public plMessage
{

View File

@ -27,8 +27,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plDynaDecalEnableMsg_inc
#define plDynaDecalEnableMsg_inc
#include "../pnMessage/plMessage.h"
#include "../pnKeyedObject/plKey.h"
#include "pnMessage/plMessage.h"
#include "pnKeyedObject/plKey.h"
class hsStream;
class hsResMgr;

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plDynamicEnvMapMsg_inc
#define plDynamicEnvMapMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsGeometry3.h"
#include "hsColorRGBA.h"

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef _plDynamicTextMsg_h
#define _plDynamicTextMsg_h
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsColorRGBA.h"
class plDynamicTextMap;

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plExcludeRegionMsg_inc
#define plExcludeRegionMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class hsStream;

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTypes.h"
#include "plInputEventMsg.h"
#include "../pnKeyedObject/plKey.h"
#include "pnKeyedObject/plKey.h"
#include "hsResMgr.h"
#include "hsBitVector.h"

View File

@ -27,8 +27,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plInputEventMsg_inc
#define plInputEventMsg_inc
#include "../pnMessage/plMessage.h"
#include "../pnInputCore/plControlDefinition.h"
#include "pnMessage/plMessage.h"
#include "pnInputCore/plControlDefinition.h"
#include "hsGeometry3.h"
#include "hsStream.h"
#include "hsUtils.h"

View File

@ -32,7 +32,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTypes.h"
#include "plInputIfaceMgrMsg.h"
#include "../plInputCore/plInputInterface.h"
#include "plInputCore/plInputInterface.h"
#include "hsResMgr.h"
#include "hsRefCnt.h"

View File

@ -35,8 +35,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTypes.h"
#include "hsStream.h"
#include "hsResMgr.h"
#include "../pnMessage/plMessage.h"
#include "../pnUtils/pnUtils.h"
#include "pnMessage/plMessage.h"
#include "pnUtils/pnUtils.h"
class plInputInterface;
class plInputIfaceMgrMsg : public plMessage

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plInterestingPing_inc
#define plInterestingPing_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsGeometry3.h"
#include "hsResMgr.h"

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plLOSHitMsg_inc
#define plLOSHitMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsStream.h"
#include "hsResMgr.h"
#include "hsGeometry3.h"

View File

@ -25,7 +25,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "plLOSRequestMsg.h"
#include "hsResMgr.h"
#include "../pnKeyedObject/plUoid.h"
#include "pnKeyedObject/plUoid.h"
plLOSRequestMsg::plLOSRequestMsg()
: fRequestID(0),

View File

@ -26,8 +26,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plLOSRequestMsg_inc
#define plLOSRequestMsg_inc
#include "../pnMessage/plMessage.h"
#include "../plPhysical/plSimDefs.h"
#include "pnMessage/plMessage.h"
#include "plPhysical/plSimDefs.h"
#include "hsGeometry3.h"
class plLOSRequestMsg : public plMessage

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plLayRefMsg_inc
#define plLayRefMsg_inc
#include "../pnMessage/plRefMsg.h"
#include "pnMessage/plRefMsg.h"
class hsStream;
class hsResMgr;

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plLightRefMsg_inc
#define plLightRefMsg_inc
#include "../pnMessage/plRefMsg.h"
#include "pnMessage/plRefMsg.h"
class hsKeyedObject;

View File

@ -23,8 +23,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include "../../NucleusLib/pnMessage/plSimulationMsg.h"
#include "../../CoreLib/hsGeometry3.h"
#include "pnMessage/plSimulationMsg.h"
#include "hsGeometry3.h"
class plLinearVelocityMsg : public plSimulationMsg
{
public:

View File

@ -28,8 +28,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsResMgr.h"
#include "hsUtils.h"
#include "plgDispatch.h"
#include "../plNetCommon/plNetServerSessionInfo.h"
#include "../plNetCommon/plNetCommon.h"
#include "plNetCommon/plNetServerSessionInfo.h"
#include "plNetCommon/plNetCommon.h"
#include "hsBitVector.h"

View File

@ -26,10 +26,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plLinkToAgeMsg_INC
#define plLinkToAgeMsg_INC
#include "../pnMessage/plMessageWithCallbacks.h"
#include "../pnMessage/plEventCallbackMsg.h"
#include "../plNetCommon/plNetServerSessionInfo.h"
#include "../plNetCommon/plNetCommonHelpers.h"
#include "pnMessage/plMessageWithCallbacks.h"
#include "pnMessage/plEventCallbackMsg.h"
#include "plNetCommon/plNetServerSessionInfo.h"
#include "plNetCommon/plNetCommonHelpers.h"
#include "hsUtils.h"
////////////////////////////////////////////////////////////////////

View File

@ -28,8 +28,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsStream.h"
#include "plListenerMsg.h"
#include "hsResMgr.h"
#include "../pnKeyedObject/plUoid.h"
#include "../pnKeyedObject/plFixedKey.h"
#include "pnKeyedObject/plUoid.h"
#include "pnKeyedObject/plFixedKey.h"
void plListenerMsg::Read(hsStream* s, hsResMgr* mgr)

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plListenerMsg_inc
#define plListenerMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsGeometry3.h"
class plListenerMsg : public plMessage

View File

@ -26,8 +26,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plLoadAgeMsg_INC
#define plLoadAgeMsg_INC
#include "../pnMessage/plMessage.h"
#include "../plUUID/plUUID.h"
#include "pnMessage/plMessage.h"
#include "plUUID/plUUID.h"
#include "hsUtils.h"
//

View File

@ -29,10 +29,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsStream.h"
#include "plLoadAvatarMsg.h"
#include "hsResMgr.h"
#include "../pnNetCommon/plNetApp.h"
#include "../pnNetCommon/plSynchedObject.h"
#include "pnNetCommon/plNetApp.h"
#include "pnNetCommon/plSynchedObject.h"
#include "../plAvatar/plAvatarTasks.h"
#include "plAvatar/plAvatarTasks.h"
//////////////////

View File

@ -31,7 +31,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plLoadCloneMsg.h"
#include "hsUtils.h"
#include "../pnKeyedObject/plUoid.h"
#include "pnKeyedObject/plUoid.h"
class plAvTask;

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsResMgr.h"
// other
#include "../pnNetCommon/plNetApp.h"
#include "pnNetCommon/plNetApp.h"
#include "hsTypes.h"

View File

@ -30,9 +30,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#define plLoadCloneMsgMsg_INC
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
// #include "hsUtils.h"
#include "../pnKeyedObject/plUoid.h"
#include "pnKeyedObject/plUoid.h"
/** \class plLoadCloneMsg
Tell the net client manager to allocate a new object based on copying an

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plMatRefMsg_inc
#define plMatRefMsg_inc
#include "../pnMessage/plRefMsg.h"
#include "pnMessage/plRefMsg.h"
class plMatRefMsg : public plGenRefMsg
{

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plMatrixUpdateMsg_inc
#define plMatrixUpdateMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsMatrix44.h"
class plMatrixUpdateMsg : public plMessage

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plMemberUpdateMsg_INC
#define plMemberUpdateMsg_INC
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsUtils.h"
//

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plMeshRefMsg_inc
#define plMeshRefMsg_inc
#include "../pnMessage/plRefMsg.h"
#include "pnMessage/plRefMsg.h"
#include "hsStream.h"
class hsResMgr;

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plMessageCreatable_inc
#define plMessageCreatable_inc
#include "../pnFactory/plCreator.h"
#include "pnFactory/plCreator.h"
#include "plInterestingPing.h"

View File

@ -27,8 +27,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plMovieMsg_inc
#define plMovieMsg_inc
#include "../pnMessage/plMessage.h"
#include "../pnKeyedObject/plFixedKey.h"
#include "pnMessage/plMessage.h"
#include "pnKeyedObject/plFixedKey.h"
#include "hsPoint2.h"
#include "hsTemplates.h"

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plMultistageMsg_inc
#define plMultistageMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsBitVector.h"
// Messages sent to a MultistageModifier.

View File

@ -32,7 +32,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLNCAGEJOINERMSG_H
#define PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLNCAGEJOINERMSG_H
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class plNCAgeJoinerMsg : public plMessage {

View File

@ -32,7 +32,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLNETCLIENTMGRMSG_H
#define PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLNETCLIENTMGRMSG_H
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class plNetClientMgrMsg : public plMessage {

View File

@ -33,10 +33,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#define PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLNETCOMMMSGS_H
#include "../pnUtils/pnUtils.h"
#include "../pnNetBase/pnNetBase.h"
#include "../pnMessage/plMessage.h"
#include "../pnNetProtocol/pnNetProtocol.h"
#include "pnUtils/pnUtils.h"
#include "pnNetBase/pnNetBase.h"
#include "pnMessage/plMessage.h"
#include "pnNetProtocol/pnNetProtocol.h"
class plNetCommReplyMsg : public plMessage {

View File

@ -27,8 +27,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#define plNetOwnershipMsg_INC
#include "hsStlUtils.h"
#include "../pnMessage/plMessage.h"
#include "../plNetMessage/plNetMessage.h"
#include "pnMessage/plMessage.h"
#include "plNetMessage/plNetMessage.h"
//
// A msg sent locally when this client changes ownership of a group of objects

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plNetVoiceListMsg_inc
#define plNetVoiceListMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsTemplates.h"
class plNetVoiceListMsg : public plMessage

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef _plNodeCleanupMsg_h
#define _plNodeCleanupMsg_h
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class plNodeCleanupMsg : public plMessage
{

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsStlUtils.h"
#include "hsRefCnt.h"
#include "../pnKeyedObject/plKey.h"
#include "pnKeyedObject/plKey.h"
class hsStream;
class hsResMgr;

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plParticleUpdateMsg_inc
#define plParticleUpdateMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsResMgr.h"
#include "hsStream.h"
#include "hsBitVector.h"

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plPickedMsg_inc
#define plPickedMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsGeometry3.h"

View File

@ -32,7 +32,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLPRELOADERMSG_H
#define PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLPRELOADERMSG_H
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class plPreloaderMsg : public plMessage {
public:

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plRenderMsg_inc
#define plRenderMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class plPipeline;

View File

@ -26,8 +26,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTypes.h"
#include "plRenderRequestMsg.h"
#include "../pnKeyedObject/plUoid.h"
#include "../pnKeyedObject/plFixedKey.h"
#include "pnKeyedObject/plUoid.h"
#include "pnKeyedObject/plFixedKey.h"
#include "hsResMgr.h"

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plRenderRequestMsg_inc
#define plRenderRequestMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsRefCnt.h"
class plRenderRequest;

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plReplaceGeometryMsg_inc
#define plReplaceGeometryMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class plSharedMesh;
class hsGMaterial;

View File

@ -29,8 +29,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTypes.h"
#include "hsStream.h"
#include "../pnMessage/plMessage.h"
#include "../plResMgr/plResManagerHelper.h"
#include "pnMessage/plMessage.h"
#include "plResMgr/plResManagerHelper.h"
class plResManagerHelper;
class plResMgrHelperMsg : public plMessage

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plResponderMsg_inc
#define plResponderMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
// Derive your message from this class if you need to know the key of the avatar
// that activated your responder

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef PL_RIDE_ANIMATED_PHYS_MSG
#define PL_RIDE_ANIMATED_PHYS_MSG
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class plRideAnimatedPhysMsg : public plMessage
{

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plRippleShapeMsg_inc
#define plRippleShapeMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class plPrintShape;

View File

@ -35,7 +35,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// Its up to the receiver to decide if they are interested in that particular room
//
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class plRoomLoadNotifyMsg : public plMessage
{

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plShadowCastMsg_inc
#define plShadowCastMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class plPipeline;
class plShadowCaster;

View File

@ -23,8 +23,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include "../plMessage/plSimInfluenceMsg.h"
#include "../../CoreLib/hsStream.h"
#include "plMessage/plSimInfluenceMsg.h"
#include "hsStream.h"
/*
void plSimInfluenceMsg::Read(hsStream *stream, hsResMgr *mgr)

View File

@ -29,8 +29,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef PLSIMINFLUENCEMSG_H
#define PLSIMINFLUENCEMSG_H
/*
#include "../../NucleusLib/pnMessage/plSimulationMsg.h"
#include "../../CoreLib/hsGeometry3.h"
#include "pnMessage/plSimulationMsg.h"
#include "hsGeometry3.h"
////////////
//

View File

@ -23,7 +23,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include "../plMessage/plSimStateMsg.h"
#include "plMessage/plSimStateMsg.h"
#include "hsResMgr.h"
void plSubWorldMsg::Read(hsStream *stream, hsResMgr *mgr)

View File

@ -28,7 +28,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef PLSIMSTATEMSG_INC
#define PLSIMSTATEMSG_INC
#include "../pnMessage/plSimulationMsg.h"
#include "pnMessage/plSimulationMsg.h"
// use a nil key to return to main world
// otherwise pass in the key of the world you're going to.

View File

@ -27,8 +27,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plSpawnModMsg_inc
#define plSpawnModMsg_inc
#include "../pnMessage/plMessage.h"
#include "../pnKeyedObject/plUoid.h"
#include "pnMessage/plMessage.h"
#include "pnKeyedObject/plUoid.h"
#include "hsGeometry3.h"
class hsStream;

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plSpawnRequestMsg_inc
#define plSpawnRequestMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class hsStream;
class hsResMgr;

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plSwimMsg_h
#define plSwimMsg_h
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
/** \class plSwimMsg
You're either entering the pool, or leaving. Those are the only swim messages right now.

View File

@ -24,7 +24,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "plSynchEnableMsg.h"
#include "../pnNetCommon/plNetApp.h"
#include "pnNetCommon/plNetApp.h"
plSynchEnableMsg::plSynchEnableMsg(bool push, bool enable) : fPush(push), fEnable(enable)
{

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plSynchEnableMsg_h
#define plSynchEnableMsg_h
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
//
// Push or pop a cmd to enable/disable dirty state tracking.

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plTimerCallbackMsg_inc
#define plTimerCallbackMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsStream.h"
class hsResMgr;

View File

@ -29,7 +29,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTypes.h"
#include "hsStream.h"
#include "../pnMessage/plMessageWithCallbacks.h"
#include "pnMessage/plMessageWithCallbacks.h"
class plTransitionMsg : public plMessageWithCallbacks
{

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plTriggerMsg_inc
#define plTriggerMsg_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class plTriggerMsg : public plMessage

View File

@ -26,9 +26,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plVaultNotifyMsg_h_inc
#define plVaultNotifyMsg_h_inc
#include "../pnMessage/plMessage.h"
#include "../plNetCommon/plNetCommonHelpers.h"
#include "../plNetCommon/plNetCommon.h"
#include "pnMessage/plMessage.h"
#include "plNetCommon/plNetCommonHelpers.h"
#include "plNetCommon/plNetCommon.h"
class plVaultNotifyMsg : public plMessage
{

View File

@ -0,0 +1,21 @@
include_directories("../../CoreLib")
include_directories("../../FeatureLib")
include_directories("../../NucleusLib/inc")
include_directories("../../NucleusLib")
include_directories("../../PubUtilLib")
include_directories(${OPENSSL_INCLUDE_DIR})
set(plNetClientComm_SOURCES
plNetClientComm.cpp
)
set(plNetClientComm_HEADERS
plNetClientComm.h
plNetClientCommCreatable.h
)
add_library(plNetClientComm STATIC ${plNetClientComm_SOURCES} ${plNetClientComm_HEADERS})
source_group("Source Files" FILES ${plNetClientComm_SOURCES})
source_group("Header Files" FILES ${plNetClientComm_HEADERS})

View File

@ -31,21 +31,21 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plNetClientComm.h"
#include "../pnAsyncCore/pnAsyncCore.h"
#include "../pnProduct/pnProduct.h"
#include "../pnNetCli/pnNetCli.h"
#include "../plNetGameLib/plNetGameLib.h"
#include "../pnIni/pnIni.h"
#include "pnAsyncCore/pnAsyncCore.h"
#include "pnProduct/pnProduct.h"
#include "pnNetCli/pnNetCli.h"
#include "plNetGameLib/plNetGameLib.h"
#include "pnIni/pnIni.h"
#include "../plMessage/plNetCommMsgs.h"
#include "../plMessage/plNetClientMgrMsg.h"
#include "../plNetMessage/plNetMessage.h"
#include "../plNetCommon/plNetCommon.h"
#include "../plVault/plVault.h"
#include "../plMessage/plAccountUpdateMsg.h"
#include "../plNetClient/plNetClientMgr.h"
#include "plMessage/plNetCommMsgs.h"
#include "plMessage/plNetClientMgrMsg.h"
#include "plNetMessage/plNetMessage.h"
#include "plNetCommon/plNetCommon.h"
#include "plVault/plVault.h"
#include "plMessage/plAccountUpdateMsg.h"
#include "plNetClient/plNetClientMgr.h"
#include "../../FeatureLib/pfMessage/pfKIMsg.h"
#include "pfMessage/pfKIMsg.h"
#include "hsResMgr.h"

View File

@ -38,11 +38,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTypes.h"
#include "../pnUtils/pnUtils.h"
#include "../pnNetBase/pnNetBase.h"
#include "../plNetCommon/plNetServerSessionInfo.h"
#include "../plNetCommon/plNetCommonHelpers.h"
#include "../plMessage/plNetCommMsgs.h"
#include "pnUtils/pnUtils.h"
#include "pnNetBase/pnNetBase.h"
#include "plNetCommon/plNetServerSessionInfo.h"
#include "plNetCommon/plNetCommonHelpers.h"
#include "plMessage/plNetCommMsgs.h"
class plNetMessage;

View File

@ -0,0 +1,19 @@
include_directories("../../CoreLib")
include_directories("../../NucleusLib/inc")
include_directories("../../NucleusLib")
include_directories("../../PubUtilLib")
set(plNetClientRecorder_SOURCES
plNetClientRecorder.cpp
plNetClientStatsRecorder.cpp
plNetClientStreamRecorder.cpp
)
set(plNetClientRecorder_HEADERS
plNetClientRecorder.h
)
add_library(plNetClientRecorder STATIC ${plNetClientRecorder_SOURCES} ${plNetClientRecorder_HEADERS})
source_group("Source Files" FILES ${plNetClientRecorder_SOURCES})
source_group("Header Files" FILES ${plNetClientRecorder_HEADERS})

View File

@ -27,20 +27,20 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsStream.h"
#include "hsTimer.h"
#include "../plNetMessage/plNetMessage.h"
#include "plNetMessage/plNetMessage.h"
#include "plCreatableIndex.h"
#include "hsResMgr.h"
#include "plgDispatch.h"
#include "../plSDL/plSDL.h"
#include "../pnNetCommon/plNetApp.h"
#include "plSDL/plSDL.h"
#include "pnNetCommon/plNetApp.h"
#include "../plMessage/plLinkToAgeMsg.h"
#include "../plMessage/plLoadAvatarMsg.h"
#include "../pnMessage/plNotifyMsg.h"
#include "../plMessage/plAgeLoadedMsg.h"
#include "plMessage/plLinkToAgeMsg.h"
#include "plMessage/plLoadAvatarMsg.h"
#include "pnMessage/plNotifyMsg.h"
#include "plMessage/plAgeLoadedMsg.h"
#include "../plStatusLog/plStatusLog.h"
#include "../plFile/hsFiles.h"
#include "plStatusLog/plStatusLog.h"
#include "plFile/hsFiles.h"
plNetClientRecorder::plNetClientRecorder(TimeWrapper* timeWrapper) :
fTimeWrapper(timeWrapper)

View File

@ -25,19 +25,19 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "plNetClientRecorder.h"
#include "hsStream.h"
#include "../plNetMessage/plNetMessage.h"
#include "plNetMessage/plNetMessage.h"
#include "plCreatableIndex.h"
#include "plgDispatch.h"
#include "../plSDL/plSDL.h"
#include "../pnNetCommon/plNetApp.h"
#include "plSDL/plSDL.h"
#include "pnNetCommon/plNetApp.h"
#include "../plMessage/plLinkToAgeMsg.h"
#include "../plMessage/plLoadAvatarMsg.h"
#include "../plMessage/plLinkToAgeMsg.h"
#include "../pnMessage/plNotifyMsg.h"
#include "../plMessage/plAgeLoadedMsg.h"
#include "plMessage/plLinkToAgeMsg.h"
#include "plMessage/plLoadAvatarMsg.h"
#include "plMessage/plLinkToAgeMsg.h"
#include "pnMessage/plNotifyMsg.h"
#include "plMessage/plAgeLoadedMsg.h"
#include "../plStatusLog/plStatusLog.h"
#include "plStatusLog/plStatusLog.h"
plNetClientStatsRecorder::plNetClientStatsRecorder(TimeWrapper* timeWrapper) :

View File

@ -25,20 +25,20 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "plNetClientRecorder.h"
#include "hsStream.h"
#include "../plNetMessage/plNetMessage.h"
#include "plNetMessage/plNetMessage.h"
#include "plCreatableIndex.h"
#include "hsResMgr.h"
#include "plgDispatch.h"
#include "../plSDL/plSDL.h"
#include "../pnNetCommon/plNetApp.h"
#include "plSDL/plSDL.h"
#include "pnNetCommon/plNetApp.h"
#include "../plMessage/plLinkToAgeMsg.h"
#include "../plMessage/plLoadAvatarMsg.h"
#include "../plMessage/plLinkToAgeMsg.h"
#include "../pnMessage/plNotifyMsg.h"
#include "../plMessage/plAgeLoadedMsg.h"
#include "plMessage/plLinkToAgeMsg.h"
#include "plMessage/plLoadAvatarMsg.h"
#include "plMessage/plLinkToAgeMsg.h"
#include "pnMessage/plNotifyMsg.h"
#include "plMessage/plAgeLoadedMsg.h"
#include "../plStatusLog/plStatusLog.h"
#include "plStatusLog/plStatusLog.h"
plNetClientStreamRecorder::plNetClientStreamRecorder(TimeWrapper* timeWrapper) :
plNetClientLoggingRecorder(timeWrapper),

View File

@ -29,9 +29,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTypes.h"
#include "hsStlUtils.h"
#include "hsTimer.h"
#include "../pnNetCommon/pnNetCommon.h"
#include "../pnNetCommon/plNetApp.h"
#include "../pnFactory/plCreatable.h"
#include "pnNetCommon/pnNetCommon.h"
#include "pnNetCommon/plNetApp.h"
#include "pnFactory/plCreatable.h"
////////////////////////////////////////////////////////////////////

View File

@ -28,10 +28,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTypes.h"
#include "hsStlUtils.h"
#include "../pnFactory/plCreatable.h"
#include "../pnNetCommon/plNetServers.h"
#include "../plNetCommon/plSpawnPointInfo.h"
#include "../plUUID/plUUID.h"
#include "pnFactory/plCreatable.h"
#include "pnNetCommon/plNetServers.h"
#include "plNetCommon/plSpawnPointInfo.h"
#include "plUUID/plUUID.h"
class hsStream;

Some files were not shown because too many files have changed in this diff Show More