SteamVR_Behaviour_PoseEvent.cs 275 B

12345678910
  1. //======= Copyright (c) Valve Corporation, All rights reserved. ===============
  2. using System;
  3. using UnityEngine.Events;
  4. namespace Valve.VR
  5. {
  6. [Serializable]
  7. public class SteamVR_Behaviour_PoseEvent : UnityEvent<SteamVR_Behaviour_Pose, SteamVR_Input_Sources> { }
  8. }