unity-atoms/Packages/BaseAtoms/Runtime/Events/VoidEvent.cs

12 lines
338 B
C#
Raw Normal View History

2018-10-30 15:05:06 -04:00
using UnityEngine;
2020-03-04 18:48:39 -05:00
namespace UnityAtoms.BaseAtoms
2018-10-30 15:05:06 -04:00
{
2019-10-15 16:37:15 -04:00
/// <summary>
/// Event of type `Void`. Inherits from `AtomEvent&lt;Void&gt;`.
/// </summary>
2019-10-14 10:51:54 -04:00
[EditorIcon("atom-icon-cherry")]
[CreateAssetMenu(menuName = "Unity Atoms/Events/Void", fileName = "VoidEvent")]
2020-03-04 18:48:39 -05:00
public sealed class VoidEvent : AtomEvent<Void> { }
}