unity-atoms/Packages/Core/Runtime/Events/GameObjectEvent.cs

9 lines
243 B
C#
Raw Normal View History

using UnityEngine;
namespace UnityAtoms
{
[UseIcon("atom-icon-cherry")]
[CreateAssetMenu(menuName = "Unity Atoms/Events/GameObject", fileName = "GameObjectEvent")]
public sealed class GameObjectEvent : AtomEvent<GameObject> { }
}