1
0
mirror of synced 2024-11-24 04:20:10 +01:00
TaikoSoundEditor/Extensions/IntExtensions.cs
2023-07-28 22:28:05 +03:00

8 lines
187 B
C#

namespace TaikoSoundEditor.Extensions
{
internal static class IntExtensions
{
public static int Clamp(this int x, int a, int b) => x <= a ? a : x >= b ? b : x;
}
}