unity-atoms/Packages/Core/Runtime/Functions/GameObjectGameObjectFunction.cs

10 lines
317 B
C#
Raw Normal View History

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