ProjectDDD/Assets/External/Behavior Designer/Runtime/Variables/SharedUInt.cs
2025-07-08 19:46:31 +09:00

8 lines
236 B
C#

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