mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -05:00
18 lines
434 B
C#
18 lines
434 B
C#
using UnityEngine;
|
|
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Event of type `Void`. Inherits from `AtomEvent<Void>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-cherry")]
|
|
[CreateAssetMenu(menuName = "Unity Atoms/Events/Void", fileName = "VoidEvent")]
|
|
public sealed class VoidEvent : AtomEvent<Void>
|
|
{
|
|
public override void Raise()
|
|
{
|
|
Raise(new Void());
|
|
}
|
|
}
|
|
}
|