diff options
Diffstat (limited to 'engine/cheatcodes.h')
| -rw-r--r-- | engine/cheatcodes.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/engine/cheatcodes.h b/engine/cheatcodes.h new file mode 100644 index 0000000..389722e --- /dev/null +++ b/engine/cheatcodes.h @@ -0,0 +1,26 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +// +//===========================================================================// + +#ifndef CHEATCODES_H +#define CHEATCODES_H + +#ifdef _WIN32 +#pragma once +#endif + + +#include "inputsystem/ButtonCode.h" + + +void ClearCheatCommands( void ); +void ReadCheatCommandsFromFile( char *pchFileName ); +void LogKeyPress( ButtonCode_t code ); +void CheckCheatCodes(); + + +#endif // CHEATCODES_H |