8 lines
195 B
C#
8 lines
195 B
C#
namespace TaikoSoundEditor.Commons.Extensions
|
|
{
|
|
internal static class IntExtensions
|
|
{
|
|
public static int Clamp(this int x, int a, int b) => x <= a ? a : x >= b ? b : x;
|
|
}
|
|
}
|