mirror of
https://github.com/kwsch/NHSE.git
synced 2026-03-26 11:34:44 -05:00
26 lines
712 B
C#
26 lines
712 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace NHSE.Core
|
|
{
|
|
public static class StructureUtil
|
|
{
|
|
public static Dictionary<string, string[]> GetStructureHelpList()
|
|
{
|
|
var kvpa = new[]
|
|
{
|
|
EnumUtil.GetEnumList<BuildingType>(),
|
|
|
|
EnumUtil.GetEnumList<DoorKind>(),
|
|
EnumUtil.GetEnumList<RoofType>(),
|
|
EnumUtil.GetEnumList<WallType>(),
|
|
|
|
EnumUtil.GetEnumList<BridgeType>(),
|
|
EnumUtil.GetEnumList<BridgeMaterial>(),
|
|
EnumUtil.GetEnumList<SlopeType>(),
|
|
};
|
|
return kvpa.ToDictionary(x => x.Key, x => x.Value);
|
|
}
|
|
}
|
|
}
|