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

13 lines
421 B
C#

using Robust.Shared.Utility;
namespace Content.Client.Stylesheets.SheetletConfigs;
public interface IWindowConfig : ISheetletConfig
{
public ResPath WindowHeaderTexturePath { get; }
public ResPath WindowHeaderAlertTexturePath { get; }
public ResPath WindowBackgroundPath { get; }
public ResPath WindowBackgroundBorderedPath { get; }
public ResPath TransparentWindowBackgroundBorderedPath { get; }
}