1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-21 17:28:00 +02:00
Beef/BeefLibs/corlib/src/IMinMaxValue.bf

9 lines
147 B
Beef
Raw Normal View History

namespace System
{
interface IMinMaxValue<T>
{
public static T MinValue { get; }
public static T MaxValue { get; }
}
}