unity-atoms/Packages/Core/Runtime/Events/GameObjectEvent.cs
2019-10-15 22:30:18 +02:00

12 lines
364 B
C#

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