summaryrefslogtreecommitdiff
path: root/engine/sys_mainwind.h
diff options
context:
space:
mode:
authorFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
committerFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
commit3bf9df6b2785fa6d951086978a3e66f49427166a (patch)
tree2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /engine/sys_mainwind.h
downloadarchived-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.h30
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