mirror of
https://github.com/kwsch/NHSE.git
synced 2026-03-23 02:05:07 -05:00
17 lines
395 B
C#
17 lines
395 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,
|
|
} |