This commit is contained in:
FluorescentCIAAfricanAmerican
2020-04-22 12:56:21 -04:00
commit 3bf9df6b27
15370 changed files with 5489726 additions and 0 deletions

23
game/shared/lobby.cpp Normal file
View File

@ -0,0 +1,23 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#include "cbase.h"
#include "gcsdk/gcsdk_auto.h"
#include "base_gcmessages.pb.h"
#include "lobby.h"
#include "gcsdk/accountdetails.h"
using namespace GCSDK;
#ifdef GC
void CLobbyInvite::YldInitFromPlayerGroup( GCSDK::IPlayerGroup *pPlayerGroup )
{
SetGroupID( pPlayerGroup->GetGroupID() );
SetSenderID( pPlayerGroup->GetLeader().ConvertToUint64() );
SetSenderName( GGCBase()->YieldingGetPersonaName( pPlayerGroup->GetLeader(), "Unknown Player" ) );
}
#endif