You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
814 B
21 lines
814 B
//========= 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; |
|
} |
|
};
|
|
|