NLDClient-yudde/ProjectNLD/Assets/ThirdParty/Behavior Designer/Runtime/Variables/SharedUInt.cs

8 lines
243 B
C#
Executable File

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