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

13 lines
275 B
C#

using Robust.Shared.Maths;
namespace Robust.Client.Graphics.Drawing
{
public class StyleBoxEmpty : StyleBox
{
protected override void DoDraw(DrawingHandleScreen handle, UIBox2 box)
{
// It's empty what more do you want?
}
}
}