diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /engine/sys_mainwind.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
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 |