mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 18:17:09 +02:00
13 lines
289 B
C#
13 lines
289 B
C#
using Robust.Shared.Maths;
|
|
|
|
namespace Robust.Client.Graphics
|
|
{
|
|
public sealed class StyleBoxEmpty : StyleBox
|
|
{
|
|
protected override void DoDraw(DrawingHandleScreen handle, UIBox2 box, float uiScale)
|
|
{
|
|
// It's empty what more do you want?
|
|
}
|
|
}
|
|
}
|