Files
iFactory.Cutting.Unity/Assets/BITKit/Core/Addressable/Addressable.cs
CortexCore fd39099061 init
2024-01-23 02:56:26 +08:00

18 lines
335 B
C#

using System;
namespace BITKit
{
public interface IAddressable
{
string AddressablePath { get; }
ulong AddressableId
{
get => ulong.MinValue;
set
{
if (value <= 0) throw new ArgumentOutOfRangeException(nameof(value));
}
}
}
}