- Removed LocalizationServices and other sus things. - Rewrote AssemblyLoader [In Progress] SafeStorageService [In Progress] LuaScriptLoader
13 lines
327 B
C#
13 lines
327 B
C#
using System;
|
|
using Barotrauma.LuaCs.Services;
|
|
|
|
namespace Barotrauma.LuaCs.Configuration;
|
|
|
|
public interface IConfigEntry<T> : IConfigBase, INetworkSyncEntity where T : IEquatable<T>
|
|
{
|
|
T Value { get; }
|
|
bool TrySetValue(T value);
|
|
bool IsAssignable(T value);
|
|
new event Action<IConfigEntry<T>> OnValueChanged;
|
|
}
|