52d920d969
- ContentPackageInfoLookup Service completed. - Implemented ModConfigService.cs - Implemented some of the resource processors.
20 lines
492 B
C#
20 lines
492 B
C#
using Barotrauma.LuaCs.Configuration;
|
|
|
|
namespace Barotrauma.LuaCs.Data;
|
|
|
|
public partial interface IConfigInfo
|
|
{
|
|
/// <summary>
|
|
/// Should this config be displayed in end-user menus.
|
|
/// </summary>
|
|
bool ShowInMenus { get; }
|
|
/// <summary>
|
|
/// User-friendly on-hover tooltip text or Localization Token.
|
|
/// </summary>
|
|
string Tooltip { get; }
|
|
/// <summary>
|
|
/// Icon for display in menus, if available.
|
|
/// </summary>
|
|
string ImageIconPath { get; }
|
|
}
|