mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-07 09:43:40 +08:00
24 lines
647 B
C++
24 lines
647 B
C++
|
//========= Copyright <20> 1996-2005, 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 CSDKInput : public CInput
|
|||
|
{
|
|||
|
public:
|
|||
|
};
|
|||
|
|
|||
|
static CSDKInput g_Input;
|
|||
|
|
|||
|
// Expose this interface
|
|||
|
IInput *input = ( IInput * )&g_Input;
|
|||
|
|