unity-atoms/Packages/BaseAtoms/Runtime/VariableInstancers/GameObjectVariableInstancer.cs
2020-03-19 08:39:43 +01:00

20 lines
698 B
C#

using UnityAtoms.BaseAtoms;
using UnityEngine;
namespace UnityAtoms.BaseAtoms
{
/// <summary>
/// Variable Instancer of type `GameObject`. Inherits from `AtomVariableInstancer&lt;GameObjectVariable, GameObjectPair, GameObject, GameObjectEvent, GameObjectPairEvent, GameObjectGameObjectFunction&gt;`.
/// </summary>
[EditorIcon("atom-icon-hotpink")]
[AddComponentMenu("Unity Atoms/Variable Instancers/GameObject Variable Instancer")]
public class GameObjectVariableInstancer : AtomVariableInstancer<
GameObjectVariable,
GameObjectPair,
GameObject,
GameObjectEvent,
GameObjectPairEvent,
GameObjectGameObjectFunction>
{ }
}