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

PubUtilLib Part IV

This commit is contained in:
2011-04-07 23:37:07 -07:00
parent 93ac5b22a9
commit 3bf6b7e182
121 changed files with 904 additions and 392 deletions

View File

@ -0,0 +1,30 @@
include_directories("../../CoreLib")
include_directories("../../FeatureLib")
include_directories("../../NucleusLib/inc")
include_directories("../../NucleusLib")
include_directories("../../PubUtilLib")
set(plVault_SOURCES
plDniCoordinateInfo.cpp
plVault.cpp
plVaultClientApi.cpp
plVaultConstants.cpp
plVaultNodeAccess.cpp
)
set(plVault_HEADERS
Intern.h
Pch.h
plAgeInfoSource.h
plDniCoordinateInfo.h
plVault.h
plVaultClientApi.h
plVaultConstants.h
plVaultCreatable.h
plVaultNodeAccess.h
)
add_library(plVault STATIC ${plVault_SOURCES} ${plVault_HEADERS})
source_group("Source Files" FILES ${plVault_SOURCES})
source_group("Header Files" FILES ${plVault_HEADERS})

View File

@ -50,24 +50,24 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsStlUtils.h"
#include "hsStringTokenizer.h"
#include "hsGeometry3.h"
#include "../plSDL/plSDL.h"
#include "../plUnifiedTime/plUnifiedTime.h"
#include "../plNetCommon/plNetCommon.h"
#include "../plNetCommon/plNetServerSessionInfo.h"
#include "../plNetCommon/plSpawnPointInfo.h"
#include "../pnDispatch/plDispatch.h"
#include "plSDL/plSDL.h"
#include "plUnifiedTime/plUnifiedTime.h"
#include "plNetCommon/plNetCommon.h"
#include "plNetCommon/plNetServerSessionInfo.h"
#include "plNetCommon/plSpawnPointInfo.h"
#include "pnDispatch/plDispatch.h"
#include "plDniCoordinateInfo.h"
#include "../plGImage/plMipmap.h"
#include "../plJPEG/plJPEG.h"
#include "../plMessage/plVaultNotifyMsg.h"
#include "../plNetClientComm/plNetClientComm.h"
#include "plGImage/plMipmap.h"
#include "plJPEG/plJPEG.h"
#include "plMessage/plVaultNotifyMsg.h"
#include "plNetClientComm/plNetClientComm.h"
#define KI_CONSTANTS_ONLY
#include "../../FeatureLib/pfMessage/pfKIMsg.h" // for KI level constants =(
#include "pfMessage/pfKIMsg.h" // for KI level constants =(
#undef KI_CONSTANTS_ONLY
#pragma warning(pop)
#include "../plNetGameLib/plNetGameLib.h"
#include "plNetGameLib/plNetGameLib.h"
#endif // def CLIENT

View File

@ -28,7 +28,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsConfig.h"
#include "hsStlUtils.h"
#include "../pnFactory/plCreatable.h"
#include "pnFactory/plCreatable.h"
///////////////////////////////////////////////////////////////////

View File

@ -32,10 +32,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLVAULT_PLVAULT_H
#define PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLVAULT_PLVAULT_H
#include "../pnUtils/pnUtils.h"
#include "../pnNetBase/pnNetBase.h"
#include "../pnNetProtocol/pnNetProtocol.h"
#include "../pnAsyncCore/pnAsyncCore.h"
#include "pnUtils/pnUtils.h"
#include "pnNetBase/pnNetBase.h"
#include "pnNetProtocol/pnNetProtocol.h"
#include "pnAsyncCore/pnAsyncCore.h"
#include "plVaultConstants.h"
#include "plVaultNodeAccess.h"

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plVaultCreatable_h_inc
#define plVaultCreatable_h_inc
#include "../pnFactory/plCreator.h"
#include "pnFactory/plCreator.h"
#include "plDniCoordinateInfo.h"
REGISTER_CREATABLE( plDniCoordinateInfo );