unity-atoms/Packages/BaseAtoms/Runtime/UnityEvents/Vector2PairUnityEvent.cs

13 lines
330 B
C#
Raw Normal View History

2020-03-01 20:26:06 -05:00
using System;
using UnityEngine.Events;
using UnityEngine;
namespace UnityAtoms.BaseAtoms
{
/// <summary>
/// None generic Unity Event of type `Vector2Pair`. Inherits from `UnityEvent&lt;Vector2Pair&gt;`.
/// </summary>
[Serializable]
public sealed class Vector2PairUnityEvent : UnityEvent<Vector2Pair> { }
}