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

11 lines
269 B
C#

using Robust.Shared.Utility;
namespace Content.Client.Stylesheets.SheetletConfigs;
public interface ISliderConfig : ISheetletConfig
{
public ResPath SliderFillPath { get; }
public ResPath SliderOutlinePath { get; }
public ResPath SliderGrabber { get; }
}