14 lines
285 B
C#
14 lines
285 B
C#
using System;
|
|
|
|
namespace Barotrauma.LuaCs.Configuration;
|
|
|
|
public interface ISettingRangeEntry<T> : ISettingEntry<T> where T : IConvertible, IEquatable<T>
|
|
{
|
|
T MinValue { get; }
|
|
T MaxValue { get; }
|
|
|
|
int GetStepCount();
|
|
float GetRangeMin();
|
|
float GetRangeMax();
|
|
}
|