Files
RobustToolbox/Robust.Client/Graphics/Drawing/StyleBoxEmpty.cs
T

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?
}
}
}