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

13 lines
316 B
C#

using System;
using UnityEngine.Events;
using UnityEngine;
namespace UnityAtoms
{
/// <summary>
/// None generic Unity Event of type `GameObject`. Inherits from `UnityEvent&lt;GameObject&gt;`.
/// </summary>
[Serializable]
public sealed class GameObjectUnityEvent : UnityEvent<GameObject> { }
}