unity-atoms/Packages/Core/Runtime/Events/GameObjectGameObjectEvent.cs

12 lines
416 B
C#
Raw Normal View History

using UnityEngine;
namespace UnityAtoms
{
2019-10-15 16:30:18 -04:00
/// <summary>
/// Event x 2 of type `GameObject`. Inherits from `AtomEvent&lt;GameObject, GameObject&gt;`.
/// </summary>
2019-10-14 10:51:54 -04:00
[EditorIcon("atom-icon-cherry")]
[CreateAssetMenu(menuName = "Unity Atoms/Events/GameObject x 2", fileName = "GameObjectGameObjectEvent")]
public sealed class GameObjectGameObjectEvent : AtomEvent<GameObject, GameObject> { }
}