mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
14 lines
410 B
C#
14 lines
410 B
C#
using Robust.Client.UserInterface.Themes;
|
|
|
|
namespace Robust.Client.UserInterface;
|
|
|
|
public partial interface IUserInterfaceManager
|
|
{
|
|
public UITheme CurrentTheme { get;}
|
|
public UITheme GetTheme(string name);
|
|
public UITheme GetThemeOrDefault(string name);
|
|
public void SetActiveTheme(string themeName);
|
|
public UITheme DefaultTheme { get; }
|
|
public void SetDefaultTheme(string themeId);
|
|
}
|