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

10 lines
327 B
C#
Raw Normal View History

2020-03-01 20:26:06 -05:00
using UnityEngine;
namespace UnityAtoms.BaseAtoms
{
/// <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> { }
}