mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-30 23:52:38 +00:00
26 lines
446 B
C#
26 lines
446 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)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
// Copy constructor
|
||
|
public UniFields(UniFields copyfrom) : base(copyfrom)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|