unity-atoms/Packages/Core/Runtime/UnityEvents/GameObjectUnityEvent.cs
2019-10-01 17:27:22 +02:00

10 lines
178 B
C#

using System;
using UnityEngine.Events;
using UnityEngine;
namespace UnityAtoms
{
[Serializable]
public sealed class GameObjectUnityEvent : UnityEvent<GameObject> { }
}