12 lines
346 B
C#
Raw Normal View History

using UnityEngine;
namespace UnityAtoms
{
2019-10-15 22:34:48 +02:00
/// <summary>
/// Event of type `Vector3`. Inherits from `AtomEvent&lt;Vector3&gt;`.
/// </summary>
2019-10-14 16:51:54 +02:00
[EditorIcon("atom-icon-cherry")]
[CreateAssetMenu(menuName = "Unity Atoms/Events/Vector3", fileName = "Vector3Event")]
public sealed class Vector3Event : AtomEvent<Vector3> { }
}