unity-atoms/Assets/UnityAtoms/GameActions/SetVariableValue/SetIntVariableValue.cs

10 lines
323 B
C#
Raw Normal View History

2018-10-30 15:05:06 -04:00
using UnityEngine;
namespace UnityAtoms
{
[CreateAssetMenu(menuName = "Unity Atoms/Game Actions/Set Variable Value/Int",
fileName = "SetIntVariableValueAction", order = 0)]
public class SetIntVariableValue : SetVariableValue<int, IntVariable, IntReference, IntEvent, IntIntEvent>
{
}
2018-10-30 15:05:06 -04:00
}