2020-03-02 02:26:06 +01: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 19:57:51 +01:00
|
|
|
IntPairEvent,
|
2020-03-19 08:39:43 +01:00
|
|
|
IntIntFunction>
|
2020-03-02 02:26:06 +01:00
|
|
|
{ }
|
|
|
|
}
|