Files
tbd-station-14/Content.Client/Stylesheets/SheetletConfigs/IIconConfig.cs
2025-10-21 22:01:22 +00:00

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; }
}