mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 16:48:23 -05:00
10 lines
317 B
C#
10 lines
317 B
C#
|
using UnityEngine;
|
||
|
namespace UnityAtoms
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Function x 2 of type `GameObject`. Inherits from `AtomFunction<GameObject, GameObject>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-sand")]
|
||
|
public abstract class GameObjectGameObjectFunction : AtomFunction<GameObject, GameObject> { }
|
||
|
}
|