summaryrefslogtreecommitdiff
path: root/game/client/tfc/tfc_in_main.cpp
blob: ef8350a012d2edc99691db32ed8546a580683991 (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 CTFCInput : public CInput
{
public:
};

static CTFCInput g_Input;

// Expose this interface
IInput *input = ( IInput * )&g_Input;