using JetBrains.Annotations; namespace Content.Client.Stylesheets; /// /// The base class for all stylesheets, providing core functionality and helpers. /// [PublicAPI] public abstract partial class PalettedStylesheet : BaseStylesheet { protected PalettedStylesheet(object config) : base(config) { } }