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

12 lines
346 B
C#

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