mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 14:07:53 +03:00
* - 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
21 lines
461 B
C#
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(){}
|
|
|
|
}
|