Files
BITFALL/Assets/BITKit/Core/Addressable/Addressable.cs
CortexCore 1f5b779aa1 1
2023-12-15 00:08:02 +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));
}
}
}
}