unity-atoms/Source/Events/GameObjectEvent.cs

8 lines
209 B
C#
Raw Normal View History

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