mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -05:00
22 lines
621 B
C#
22 lines
621 B
C#
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,
|
|
IntPairEvent,
|
|
IntIntFunction,
|
|
AtomCollection,
|
|
AtomList>
|
|
{ }
|
|
}
|