mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 09:37:03 +02:00
13 lines
269 B
C#
13 lines
269 B
C#
using System.Numerics;
|
|
using Robust.Shared.Maths;
|
|
|
|
namespace Robust.Client.UserInterface.CustomControls;
|
|
|
|
internal sealed class DoNotMeasure : Control
|
|
{
|
|
protected override Vector2 MeasureOverride(Vector2 availableSize)
|
|
{
|
|
return Vector2.Zero;
|
|
}
|
|
}
|