mirror of
https://github.com/kwsch/NHSE.git
synced 2026-03-29 04:54:34 -05:00
tried to split off some grid stuff because rooms don't need to know about acres; whatever
19 lines
458 B
C#
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,
|
|
}
|
|
}
|