ProjectDDD/Assets/Behavior Designer/Runtime/Variables/SharedInt.cs

8 lines
231 B (Stored with Git LFS)
C#

namespace BehaviorDesigner.Runtime
{
[System.Serializable]
public class SharedInt : SharedVariable<int>
{
public static implicit operator SharedInt(int value) { return new SharedInt { mValue = value }; }
}
}