unity-atoms/Source/UnityEvents/GameObjectUnityEvent.cs
2019-09-23 21:11:50 +02:00

10 lines
178 B
C#

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