10 lines
344 B
C#
Raw Normal View History

using UnityEngine;
2018-10-30 20:05:06 +01:00
namespace UnityAtoms
{
[CreateAssetMenu(menuName = "Unity Atoms/Game Actions/Set Variable Value/Bool",
fileName = "SetBoolVariableValueAction", order = 2)]
public class SetBoolVariableValue : SetVariableValue<bool, BoolVariable, BoolReference, BoolEvent, BoolBoolEvent>
{
}
2018-10-30 20:05:06 +01:00
}