mirror of
https://github.com/DCFApixels/DragonECS-Unity.git
synced 2025-09-19 10:34:35 +08:00
13 lines
235 B
C#
13 lines
235 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace DCFApixels.DragonECS.Unity.Internal
|
|||
|
{
|
|||
|
internal static class Throw
|
|||
|
{
|
|||
|
internal static void ArgumentOutOfRange()
|
|||
|
{
|
|||
|
throw new ArgumentOutOfRangeException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|