Adam Ramberg c3bc59259f More WIP
2020-03-02 02:26:06 +01:00

13 lines
314 B
C#

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