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.

35 lines
1.0 KiB

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. //=======================================================================================//
  4. #ifndef CL_PERFORMANCE_COMMON_H
  5. #define CL_PERFORMANCE_COMMON_H
  6. #ifdef _WIN32
  7. #pragma once
  8. #endif
  9. //----------------------------------------------------------------------------------------
  10. #include "replay/performance.h"
  11. //----------------------------------------------------------------------------------------
  12. enum PerformanceEventType_t
  13. {
  14. EVENTTYPE_INVALID,
  15. EVENTTYPE_CAMERA_CHANGE_BEGIN,
  16. EVENTTYPE_CAMERA_CHANGE_FIRSTPERSON = EVENTTYPE_CAMERA_CHANGE_BEGIN,
  17. EVENTTYPE_CAMERA_CHANGE_THIRDPERSON,
  18. EVENTTYPE_CAMERA_CHANGE_FREE,
  19. EVENTTYPE_CAMERA_CHANGE_END = EVENTTYPE_CAMERA_CHANGE_FREE,
  20. EVENTTYPE_CHANGEPLAYER = EVENTTYPE_CAMERA_CHANGE_END + 512, // Leave plenty of room for camera types
  21. EVENTTYPE_CAMERA_SETVIEW,
  22. EVENTTYPE_TIMESCALE,
  23. };
  24. //----------------------------------------------------------------------------------------
  25. #endif // CL_PERFORMANCE_COMMON_H