Counter Strike : Global Offensive Source Code
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.
|
|
//====== Copyright �, Valve Corporation, All rights reserved. =======
//
// Purpose: Provides names for GC message types for inter GC messages
//
//=============================================================================
#include "cbase.h"
#include "shared_gcmessages.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
//-----------------------------------------------------------------------------
// Purpose: A big array of message types for keeping track of their names
//-----------------------------------------------------------------------------
GCSDK::MsgInfo_t g_SharedMsgInfo[] = { DECLARE_GC_MSG( k_EMsgInterGCAchievementAwarded ), DECLARE_GC_MSG( k_EMsgInterGCAchievementAwardedResponse ), DECLARE_GC_MSG( k_EMsgInterGCLoadAchievements ), DECLARE_GC_MSG( k_EMsgInterGCLoadAchievementResponse ), };
void InitGCSharedMessageTypes() { static GCSDK::CMessageListRegistration m_reg( g_SharedMsgInfo, Q_ARRAYSIZE(g_SharedMsgInfo) ); }
|