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

9 lines
246 B
C#
Raw Normal View History

using UnityEngine;
namespace UnityAtoms
{
2019-10-14 10:51:54 -04:00
[EditorIcon("atom-icon-cherry")]
[CreateAssetMenu(menuName = "Unity Atoms/Events/GameObject", fileName = "GameObjectEvent")]
public sealed class GameObjectEvent : AtomEvent<GameObject> { }
}