hl2_src-leak-2017/src/game/shared/portal/portal_game_account.h

22 lines
814 B
C++

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: Holds the CPortalGameAccount object
//
// $NoKeywords: $
//=============================================================================//
#include "gcsdk/schemasharedobject.h"
//---------------------------------------------------------------------------------
// Purpose: All the account-level information that the GC tracks for TF
//---------------------------------------------------------------------------------
class CPortalGameAccount : public GCSDK::CSchemaSharedObject< CSchGameAccount >
{
public:
CPortalGameAccount() : GCSDK::CSchemaSharedObject< CSchGameAccount >() {}
CPortalGameAccount( uint32 unAccountID ) : GCSDK::CSchemaSharedObject< CSchGameAccount >()
{
Obj().m_unAccountID = unAccountID;
}
};