Delta-v/Content.Client/Stylesheets/SheetletConfigs/IIconConfig.cs

12 lines
316 B
C#

using Robust.Shared.Utility;
namespace Content.Client.Stylesheets.SheetletConfigs;
public interface IIconConfig : ISheetletConfig
{
public ResPath HelpIconPath { get; }
public ResPath CrossIconPath { get; }
public ResPath RefreshIconPath { get; }
public ResPath InvertedTriangleIconPath { get; }
}