unity-atoms/Packages/Core/Runtime/VariableInstancers/BoolVariableInstancer.cs
2020-02-23 23:13:30 +01:00

12 lines
476 B
C#

using UnityEngine;
namespace UnityAtoms
{
/// <summary>
/// Variable Instancer of type `bool`. Inherits from `AtomVariableInstancer&lt;BoolVariable, bool, BoolEvent, BoolBoolEvent, BoolBoolFunction&gt;`.
/// </summary>
[EditorIcon("atom-icon-hotpink")]
[AddComponentMenu("Unity Atoms/Variable Instancers/Bool Instancer")]
public class BoolVariableInstancer : AtomVariableInstancer<BoolVariable, bool, BoolEvent, BoolBoolEvent, BoolBoolFunction> { }
}