Files
wwdpublic/Content.Client/Stylesheets/DummyStylesheetManager.cs
Cinkafox 65208f0165 [Add] new ui (#497)
* - add: StyleSheetify

* - add: APC style

* - tweak: Select only APC now!

* - fix: Window positioning

* - fix: animations

* - add: Fancy chat

* - tweak: change some margin think

* - fix: add assemblies of stylesheetify for packaging

* - tweak: update StyleSheetify

* - add: custom LauncherConnection

* - tweak: change to paper

* - tweak: Update StyleSheetify

* - add: fancy lobby screen

* - tweak: some beauty think in lobby screen

* - add: new icons

* - tweak: change icons

* - tweak: //WWDP EDIT

* - fix: disable style while testing

* - fix: Channel Popup button style revert

* - fix: test again

* - tweak: Update StyleSheetify
2025-05-17 14:30:12 +03:00

21 lines
461 B
C#

using Content.StyleSheetify.Client.StyleSheet.StyleBox;
using Robust.Client.UserInterface;
namespace Content.Client.Stylesheets;
public sealed class DummyStylesheetManager : IStylesheetManager
{
public Stylesheet SheetNano { get; } = new Stylesheet([]);
public Stylesheet SheetSpace { get; } = new Stylesheet([]);
public DummyStylesheetManager()
{
StyleBoxTextureData.IgnoreTextures = true;
}
public void Initialize(){}
}