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

10 lines
311 B
C#

using UnityEngine;
namespace UnityAtoms
{
/// <summary>
/// Action x 2 of type `GameObject`. Inherits from `AtomAction&lt;GameObject, GameObject&gt;`.
/// </summary>
[EditorIcon("atom-icon-purple")]
public abstract class GameObjectGameObjectAction : AtomAction<GameObject, GameObject> { }
}