summaryrefslogtreecommitdiff
path: root/Client/Assets/Behavior Designer/Runtime/Variables/SharedInt.cs
blob: 9bd8e0236d976fb6c4877871ebd00ab4b0e59c1a (plain)
1
2
3
4
5
6
7
8
9
10
11
using UnityEngine;
using System.Collections;

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