-- Squash:
- In progress implementation of services model.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using Barotrauma.LuaCs.Networking;
|
||||
|
||||
namespace Barotrauma.LuaCs.Configuration;
|
||||
|
||||
public interface IConfigEntry<T> : IConfigBase, INetVar where T : IConvertible, IEquatable<T>
|
||||
{
|
||||
T Value { get; }
|
||||
bool TrySetValue(T value);
|
||||
bool IsAssignable(T value);
|
||||
void Initialize(IVarId id, T defaultValue);
|
||||
}
|
||||
Reference in New Issue
Block a user