Team Fortress 2 Source Code as on 22/4/2020
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.

30 lines
656 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================//
  6. #ifndef SYS_MAINWIND_H
  7. #define SYS_MAINWIND_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. int MapEngineKeyToVirtualKey( int keyCode );
  12. // Pause VCR playback.
  13. void VCR_EnterPausedState();
  14. // During VCR playback, this can be adjusted to slow down the playback.
  15. extern int g_iVCRPlaybackSleepInterval;
  16. // During VCR playback, if this is true, then it'll pause at the end of each frame.
  17. extern bool g_bVCRSingleStep;
  18. extern bool g_bShowVCRPlaybackDisplay;
  19. #endif // SYS_MAINWIND_H