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.

27 lines
724 B

  1. //=========== Copyright Valve Corporation, All rights reserved. ===============//
  2. //
  3. // Purpose:
  4. //=============================================================================//
  5. #ifndef VREVENTS_H
  6. #define VREVENTS_H
  7. #ifdef _WIN32
  8. #pragma once
  9. #endif
  10. #include "uievent.h"
  11. #include "uieventcodes.h"
  12. #include "layout/stylesymbol.h"
  13. #include "localization/ilocalize.h"
  14. namespace panorama
  15. {
  16. // dashboard events
  17. DECLARE_PANORAMA_EVENT2( VRDashboardRequested, vr::TrackedDeviceIndex_t, vr::VROverlayHandle_t );
  18. DECLARE_PANORAMA_EVENT1( VRDashboardThumbSelected, vr::VROverlayHandle_t );
  19. DECLARE_PANORAMA_EVENT0( VRResetDashboard );
  20. DECLARE_PANORAMA_EVENT1( VRRenderToast, vr::VRNotificationId );
  21. }
  22. #endif // VREVENTS_H