mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
c2479dc0b5
- generalized map elements and added universal fields to generalization
25 lines
446 B
C#
25 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)
|
|
{
|
|
}
|
|
}
|
|
}
|