DragonECS-Unity/src/Internal/Utils/Throw.cs

13 lines
235 B
C#
Raw Normal View History

2024-12-08 15:38:04 +08:00
using System;
namespace DCFApixels.DragonECS.Unity.Internal
{
internal static class Throw
{
internal static void ArgumentOutOfRange()
{
throw new ArgumentOutOfRangeException();
}
}
}