using System; using System.Collections.Immutable; using Barotrauma.LuaCs.Configuration; using Barotrauma.LuaCs.Data; using Barotrauma.Networking; using FluentResults; namespace Barotrauma.LuaCs.Services; public partial class ConfigService { public ImmutableArray GetDisplayableConfigs() { throw new NotImplementedException(); } public ImmutableArray GetDisplayableConfigsForPackage(ContentPackage package) { throw new NotImplementedException(); } public Result AddConfigControl(IConfigInfo configInfo) { throw new NotImplementedException(); } }