unity-atoms/Packages/BaseAtoms/Runtime/VariableInstancers/IntVariableInstancer.cs

22 lines
621 B
C#
Raw Normal View History

2020-03-01 20:26:06 -05:00
using UnityEngine;
using UnityAtoms.BaseAtoms;
namespace UnityAtoms.BaseAtoms
{
/// <summary>
/// Variable Instancer of type `int`. Inherits from `AtomVariableInstancer&lt;IntVariable, IntPair, int, IntEvent, IntPairEvent, IntIntFunction&gt;`.
/// </summary>
[EditorIcon("atom-icon-hotpink")]
[AddComponentMenu("Unity Atoms/Variable Instancers/Int Variable Instancer")]
public class IntVariableInstancer : AtomVariableInstancer<
IntVariable,
IntPair,
int,
IntEvent,
IntPairEvent,
2020-03-01 20:26:06 -05:00
IntIntFunction,
AtomCollection,
AtomList>
2020-03-01 20:26:06 -05:00
{ }
}