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 � 1996-2005, Valve Corporation, All rights reserved. ======//
//
// Purpose: Main interface for DCC
//
// $NoKeywords: $
//===========================================================================//
#ifndef IDCCMAIN_H
#define IDCCMAIN_H
#ifdef _WIN32
#pragma once
#endif
#include "tier0/platform.h"
#include "appframework/iappsystem.h"
//-----------------------------------------------------------------------------
// Purpose: Main interface for DCC
//-----------------------------------------------------------------------------
#define DCC_MAIN_INTERFACE_VERSION "VDCCMain001"
abstract_class IDCCMain : public IAppSystem { public: virtual bool IsInitialized( ) = 0; };
extern IDCCMain* g_pDCCMain;
#endif // IDCCMAIN_H
|