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.
|
|
//=========== Copyright Valve Corporation, All rights reserved. ===============//
//
// Purpose:
//=============================================================================//
#ifndef VREVENTS_H
#define VREVENTS_H
#ifdef _WIN32
#pragma once
#endif
#include "uievent.h"
#include "uieventcodes.h"
#include "layout/stylesymbol.h"
#include "localization/ilocalize.h"
namespace panorama { // dashboard events
DECLARE_PANORAMA_EVENT2( VRDashboardRequested, vr::TrackedDeviceIndex_t, vr::VROverlayHandle_t ); DECLARE_PANORAMA_EVENT1( VRDashboardThumbSelected, vr::VROverlayHandle_t ); DECLARE_PANORAMA_EVENT0( VRResetDashboard ); DECLARE_PANORAMA_EVENT1( VRRenderToast, vr::VRNotificationId ); }
#endif // VREVENTS_H
|