mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-25 23:56:50 +00:00
25 lines
915 B
C++
25 lines
915 B
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose: Holds the CPortalGameAccount object
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifdef USE_GC_IN_PORTAL1
|
|
#include "gcsdk/schemasharedobject.h"
|
|
|
|
//---------------------------------------------------------------------------------
|
|
// Purpose: All the account-level information that the GC tracks for Portal
|
|
//---------------------------------------------------------------------------------
|
|
class CPortalGameAccountClient : public GCSDK::CSchemaSharedObject< CSchGameAccountClient >
|
|
{
|
|
public:
|
|
CPortalGameAccountClient() : GCSDK::CSchemaSharedObject< CSchGameAccountClient >() {}
|
|
CPortalGameAccountClient( uint32 unAccountID ) : GCSDK::CSchemaSharedObject< CSchGameAccountClient >()
|
|
{
|
|
Obj().m_unAccountID = unAccountID;
|
|
}
|
|
|
|
|
|
};
|
|
#endif //#ifdef USE_GC_IN_PORTAL1
|