mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-24 12:51:30 +00:00
3daf9307e9
- added hourglass crosshair in visual mode for time consuming actions
30 lines
529 B
C#
30 lines
529 B
C#
#region ================== Namespaces
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Text;
|
|
|
|
#endregion
|
|
|
|
namespace CodeImp.DoomBuilder.Map
|
|
{
|
|
public class UniFields : SortedList<string, UniValue>
|
|
{
|
|
// New constructor
|
|
public UniFields() : base(2)
|
|
{
|
|
}
|
|
|
|
// New constructor
|
|
public UniFields(int capacity) : base(capacity)
|
|
{
|
|
}
|
|
|
|
// Copy constructor
|
|
public UniFields(UniFields copyfrom) : base(copyfrom)
|
|
{
|
|
}
|
|
}
|
|
}
|