hl2_src-leak-2017/src/game/client/cstrike/cs_in_main.cpp

24 lines
609 B
C++

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: TF2 specific input handling
//
// $NoKeywords: $
//=============================================================================//
#include "cbase.h"
#include "kbutton.h"
#include "input.h"
//-----------------------------------------------------------------------------
// Purpose: TF Input interface
//-----------------------------------------------------------------------------
class CCSInput : public CInput
{
public:
};
static CCSInput g_Input;
// Expose this interface
IInput *input = ( IInput * )&g_Input;