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

12 lines
346 B
C#

using UnityEngine;
namespace UnityAtoms
{
/// <summary>
/// Event of type `Vector2`. Inherits from `AtomEvent&lt;Vector2&gt;`.
/// </summary>
[EditorIcon("atom-icon-cherry")]
[CreateAssetMenu(menuName = "Unity Atoms/Events/Vector2", fileName = "Vector2Event")]
public sealed class Vector2Event : AtomEvent<Vector2> { }
}