diff options
Diffstat (limited to 'engine/sys_mainwind.h')
| -rw-r--r-- | engine/sys_mainwind.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/engine/sys_mainwind.h b/engine/sys_mainwind.h new file mode 100644 index 0000000..ea19a7f --- /dev/null +++ b/engine/sys_mainwind.h @@ -0,0 +1,30 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//=============================================================================// + +#ifndef SYS_MAINWIND_H +#define SYS_MAINWIND_H +#ifdef _WIN32 +#pragma once +#endif + + +int MapEngineKeyToVirtualKey( int keyCode ); + + +// Pause VCR playback. +void VCR_EnterPausedState(); + + +// During VCR playback, this can be adjusted to slow down the playback. +extern int g_iVCRPlaybackSleepInterval; + +// During VCR playback, if this is true, then it'll pause at the end of each frame. +extern bool g_bVCRSingleStep; + +extern bool g_bShowVCRPlaybackDisplay; + + +#endif // SYS_MAINWIND_H |