unity-atoms/Source/Events/Vector2Event.cs

8 lines
197 B
C#
Raw Normal View History

using UnityEngine;
namespace UnityAtoms
{
[CreateAssetMenu(menuName = "Unity Atoms/Events/Vector2", fileName = "Vector2Event")]
public sealed class Vector2Event : AtomEvent<Vector2> { }
}