unity-atoms/Source/Events/Vector3Event.cs

8 lines
197 B
C#
Raw Normal View History

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