blob: b839cdc0eb32d50fd8acb8bdb9c7c832911a0a4a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//========= 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;
|