aboutsummaryrefslogtreecommitdiff
path: root/sp/src/game/client/sdk/sdk_in_main.cpp
blob: 1ce48c72bbed1171f4e340adc38a3444f1ea3228 (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 CSDKInput : public CInput
{
public:
};

static CSDKInput g_Input;

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