0
0
Fork 0
mirror of https://git.do.srb2.org/STJr/UltimateZoneBuilder.git synced 2025-03-04 08:50:50 +00:00
UltimateZoneBuilder/Source/Plugins/BuilderModes/General/SelectionLabel.cs
2017-01-15 00:35:40 +02:00

11 lines
265 B
C#
Executable file

namespace CodeImp.DoomBuilder.BuilderModes
{
internal class SelectionLabel : LineLengthLabel
{
// Constructor
public SelectionLabel() : base(false, true) { }
// We don't want any changes here
protected override void UpdateText() { }
}
}