You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
697 B
25 lines
697 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: HL2 specific input handling |
|
// |
|
// $NoKeywords: $ |
|
//=============================================================================// |
|
#include "cbase.h" |
|
#include "kbutton.h" |
|
#include "input.h" |
|
|
|
// memdbgon must be the last include file in a .cpp file!!! |
|
#include "tier0/memdbgon.h" |
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: HL Input interface |
|
//----------------------------------------------------------------------------- |
|
class CHLInput : public CInput |
|
{ |
|
public: |
|
}; |
|
|
|
static CHLInput g_Input; |
|
|
|
// Expose this interface |
|
IInput *input = ( IInput * )&g_Input;
|
|
|