13 lines
210 B
C#
13 lines
210 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
public class Tier
|
|||
|
{
|
|||
|
public readonly Dictionary<long, Unit> unitDic = new Dictionary<long, Unit>();
|
|||
|
|
|||
|
}
|
|||
|
}
|