13 lines
234 B
C#
13 lines
234 B
C#
using Robust.Client.UserInterface;
|
|
|
|
namespace Content.Client.Stylesheets
|
|
{
|
|
public interface IStylesheetManager
|
|
{
|
|
Stylesheet SheetNano { get; }
|
|
Stylesheet SheetSpace { get; }
|
|
|
|
void Initialize();
|
|
}
|
|
}
|