mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-19 11:36:18 +00:00
6 lines
170 B
C#
6 lines
170 B
C#
|
namespace TUI.Engine.Rendering;
|
||
|
|
||
|
public static class IntegerExtension
|
||
|
{
|
||
|
public static int Max(this int value, int maxValue) => maxValue <= value ? value : maxValue;
|
||
|
}
|