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

13 lines
330 B
C#
Raw Normal View History

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