unity-atoms/Packages/Core/Runtime/UnityEvents/GameObjectGameObjectUnityEvent.cs

10 lines
200 B
C#
Raw Normal View History

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