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.
27 lines
658 B
27 lines
658 B
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose: Includes all the headers/declarations necessary to access the
|
|
// engine interface
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef ENGINEINTERFACE_H
|
|
#define ENGINEINTERFACE_H
|
|
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
// engine interface
|
|
#include "steam/steam_api.h"
|
|
#include "cdll_client_int.h"
|
|
#include "tier2/tier2.h"
|
|
#include "matchmaking/imatchframework.h"
|
|
|
|
extern class IEngineVGui *enginevguifuncs;
|
|
#ifdef _GAMECONSOLE
|
|
extern class IXOnline *xonline;
|
|
#endif
|
|
|
|
#endif // ENGINEINTERFACE_H
|