mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
11 lines
265 B
C#
Executable file
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() { }
|
|
}
|
|
}
|