mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-26 08:06:58 +00:00
24 lines
611 B
C++
24 lines
611 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 CDODInput : public CInput
|
|
{
|
|
public:
|
|
};
|
|
|
|
static CDODInput g_Input;
|
|
|
|
// Expose this interface
|
|
IInput *input = ( IInput * )&g_Input;
|
|
|