using System; using System.Collections.Generic; using Barotrauma.LuaCs.Services; namespace Barotrauma.LuaCs.Configuration; public interface ISettingList : ISettingEntry, INetworkSyncEntity where T : IEquatable { IReadOnlyList Options { get; } new event Action> OnValueChanged; }