OldBlueWater/BlueWater/Assets/Behavior Designer/Runtime/Variables/SharedUInt.cs

8 lines
236 B
C#
Raw Normal View History

2023-09-11 03:34:42 +00:00
namespace BehaviorDesigner.Runtime
{
[System.Serializable]
public class SharedUInt : SharedVariable<uint>
{
public static implicit operator SharedUInt(uint value) { return new SharedUInt { mValue = value }; }
}
}