unity-atoms/Packages/Core/Runtime/Events/Vector3Event.cs

9 lines
234 B
C#
Raw Normal View History

using UnityEngine;
namespace UnityAtoms
{
2019-10-14 10:51:54 -04:00
[EditorIcon("atom-icon-cherry")]
[CreateAssetMenu(menuName = "Unity Atoms/Events/Vector3", fileName = "Vector3Event")]
public sealed class Vector3Event : AtomEvent<Vector3> { }
}