css_enhanced_waf/game/client/cstrike/cs_in_main.cpp
2022-03-02 11:45:17 +03:00

23 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;