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<IntVariable, IntPair, int, IntEvent, IntPairEvent, IntIntFunction>`.
|
|
|
|
/// </summary>
|
|
|
|
[EditorIcon("atom-icon-hotpink")]
|
|
|
|
[AddComponentMenu("Unity Atoms/Variable Instancers/Int Variable Instancer")]
|
|
|
|
public class IntVariableInstancer : AtomVariableInstancer<
|
|
|
|
IntVariable,
|
|
|
|
IntPair,
|
|
|
|
int,
|
|
|
|
IntEvent,
|
2020-03-02 13:57:51 -05:00
|
|
|
IntPairEvent,
|
2020-03-01 20:26:06 -05:00
|
|
|
IntIntFunction,
|
|
|
|
AtomCollection,
|
2020-03-02 13:57:51 -05:00
|
|
|
AtomList>
|
2020-03-01 20:26:06 -05:00
|
|
|
{ }
|
|
|
|
}
|