- ConfigService.cs alpha testing.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user