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

Change Uuid to plUUID in this message.

This commit is contained in:
Darryl Pogue
2011-10-28 23:17:19 -07:00
parent 46e14a43c0
commit df57a01d91

View File

@ -52,7 +52,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsStream.h" #include "hsStream.h"
#include "hsResMgr.h" #include "hsResMgr.h"
#include "pnMessage/plMessage.h" #include "pnMessage/plMessage.h"
#include "pnUtils/pnUtils.h" #include "pnUUID/pnUUID.h"
class plInputInterface; class plInputInterface;
class plInputIfaceMgrMsg : public plMessage class plInputIfaceMgrMsg : public plMessage
@ -65,7 +65,7 @@ class plInputIfaceMgrMsg : public plMessage
const char* ageName; const char* ageName;
const char* ageFileName; const char* ageFileName;
const char* spawnPoint; const char* spawnPoint;
Uuid ageInstanceGuid; plUUID ageInstanceGuid;
plKey fAvKey; plKey fAvKey;
public: public:
@ -125,8 +125,8 @@ class plInputIfaceMgrMsg : public plMessage
const char* GetAgeFileName() { return ageFileName; } const char* GetAgeFileName() { return ageFileName; }
void SetSpawnPoint(const char* s) { spawnPoint = s; } void SetSpawnPoint(const char* s) { spawnPoint = s; }
const char* GetSpawnPoint() { return spawnPoint; } const char* GetSpawnPoint() { return spawnPoint; }
void SetAgeInstanceGuid(const Uuid& guid) { ageInstanceGuid = guid; } void SetAgeInstanceGuid(const plUUID& guid) { ageInstanceGuid = guid; }
const Uuid& GetAgeInstanceGuid() { return ageInstanceGuid; } const plUUID& GetAgeInstanceGuid() { return ageInstanceGuid; }
UInt8 GetCommand( void ) { return fCommand; } UInt8 GetCommand( void ) { return fCommand; }
UInt32 GetPageID( void ) { return fPageID; } UInt32 GetPageID( void ) { return fPageID; }
void SetIFace( plInputInterface *iface ); void SetIFace( plInputInterface *iface );