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

13 lines
354 B
C#

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