- Removed LocalizationServices and other sus things. - Rewrote AssemblyLoader [In Progress] SafeStorageService [In Progress] LuaScriptLoader
18 lines
555 B
C#
18 lines
555 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Immutable;
|
|
using Barotrauma.LuaCs.Configuration;
|
|
using Barotrauma.LuaCs.Data;
|
|
using Barotrauma.LuaCs.Services;
|
|
using Barotrauma.Networking;
|
|
|
|
namespace Barotrauma.LuaCs.Services;
|
|
|
|
public partial interface IConfigService
|
|
{
|
|
ImmutableArray<IDisplayableConfigBase> GetDisplayableConfigs();
|
|
ImmutableArray<IDisplayableConfigBase> GetDisplayableConfigsForPackage(ContentPackage package);
|
|
|
|
FluentResults.Result<IConfigControl> AddConfigControl(IConfigInfo configInfo);
|
|
}
|