unity-atoms/Packages/Core/Runtime/UnityEvents/Vector2UnityEvent.cs
2019-10-15 22:34:08 +02:00

13 lines
304 B
C#

using System;
using UnityEngine.Events;
using UnityEngine;
namespace UnityAtoms
{
/// <summary>
/// None generic Unity Event of type `Vector2`. Inherits from `UnityEvent&lt;Vector2&gt;`.
/// </summary>
[Serializable]
public sealed class Vector2UnityEvent : UnityEvent<Vector2> { }
}