diff options
Diffstat (limited to 'game/client/tfc/tfc_in_main.cpp')
| -rw-r--r-- | game/client/tfc/tfc_in_main.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/game/client/tfc/tfc_in_main.cpp b/game/client/tfc/tfc_in_main.cpp new file mode 100644 index 0000000..ef8350a --- /dev/null +++ b/game/client/tfc/tfc_in_main.cpp @@ -0,0 +1,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; + |