mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
7 lines
274 B
C#
7 lines
274 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace UnityAtoms
|
||
|
{
|
||
|
[CreateAssetMenu(menuName = "Unity Atoms/Void/Event with GameObject", fileName = "VoidGameObjectEvent", order = CreateAssetMenuUtils.Order.EVENT_WITH_GO)]
|
||
|
public class VoidGameObjectEvent : GameEvent<Void, GameObject> { }
|
||
|
}
|