mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
* - tweak: update StyleSheetify * - add: flexbox * - fix: size of flexbox in launchergui * - tweak: Profile editor: start. * - add: categories * - tweak: help me please with this shi... loadouts * - fix: container path think * - tweak: thinks for optimisation * - add: group selection for loadoutpicker * - tweak: change position of preview * - add: reason text * - fix: Кролькины фиксы * - fix: кролькины фиксы ч.2 * - fix: кролькины фиксы ч.3 * - кролькины фиксы - финал * - fix: Ворчливого дедушкины фиксы, удаление старого барахла и пометка wwdp * - tweak: some ui change for LoadoutCategories and LoadoutEntry * - ворчливый дед фиксы ч.2 * - fix: очередные кролькины фиксы * - add: loadout prototype validation * - fix: description read from edit field
19 lines
516 B
C#
19 lines
516 B
C#
using Content.StyleSheetify.Client.StyleSheet;
|
|
using Content.StyleSheetify.Client.StyleSheet.StyleBox;
|
|
|
|
namespace Content.Client.Stylesheets;
|
|
|
|
// WWDP CLASS
|
|
public sealed class DummyStylesheetManager : IStylesheetManager
|
|
{
|
|
public StylesheetReference SheetNano { get; } = StylesheetReference.Empty;
|
|
public StylesheetReference SheetSpace { get; } = StylesheetReference.Empty;
|
|
|
|
public DummyStylesheetManager()
|
|
{
|
|
StyleBoxTextureData.IgnoreTextures = true;
|
|
}
|
|
|
|
public void Initialize(){}
|
|
}
|