2019-05-29 12:52:27 -04:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace UnityAtoms
|
|
|
|
{
|
|
|
|
[CreateAssetMenu(menuName = "Unity Atoms/Events/Vector2", fileName = "Vector2Event")]
|
2019-09-25 15:05:06 -04:00
|
|
|
public sealed class Vector2Event : AtomEvent<Vector2> { }
|
2019-05-29 12:52:27 -04:00
|
|
|
}
|