NHSE/NHSE.Core/Structures/Building/BridgeMaterial.cs
Kurt 084542d367 xmldoc
tried to split off some grid stuff because rooms don't need to know about acres; whatever
2020-05-23 13:08:14 -07:00

19 lines
458 B
C#

namespace NHSE.Core
{
/// <summary>
/// Material used for a <see cref="BridgeType"/> construction (footstep sounds?).
/// </summary>
public enum BridgeMaterial : byte
{
BridgeStone = 0x00,
BridgeSuspension = 0x01,
BridgeJapanese = 0x02,
BridgeLog = 0x04,
BridgeRed = 0x05,
BridgeIron = 0x06,
BridgeReserved = 0x07,
BridgeWood = 0x0A,
BridgeBricks = 0x0B,
}
}