summaryrefslogtreecommitdiff
path: root/Client/Assets/Behavior Designer/Runtime/Variables/SharedInt.cs
blob: b74b41d163abf0853df06c524c6a3034a4954e84 (plain)
1
2
3
4
5
6
7
8
namespace BehaviorDesigner.Runtime
{
    [System.Serializable]
    public class SharedInt : SharedVariable<int>
    {
        public static implicit operator SharedInt(int value) { return new SharedInt { mValue = value }; }
    }
}