15 lines
339 B
C#
15 lines
339 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Immutable;
|
|
using Barotrauma.LuaCs.Configuration;
|
|
using Barotrauma.LuaCs.Data;
|
|
using Barotrauma.LuaCs;
|
|
using Barotrauma.Networking;
|
|
|
|
namespace Barotrauma.LuaCs;
|
|
|
|
public partial interface IConfigService
|
|
{
|
|
ImmutableArray<ISettingBase> GetDisplayableConfigs();
|
|
}
|