ProximityEvent.cs 164 B

1234567891011
  1. using System;
  2. using UnityEngine;
  3. using UnityEngine.Events;
  4. namespace Leap.Unity
  5. {
  6. [Serializable]
  7. public class ProximityEvent : UnityEvent<GameObject>
  8. {
  9. }
  10. }