SteamVR_Behaviour_Vector2Event.cs 318 B

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