1. new UI 2. wires are correctly randomized. 3. wires layouts are shared across machines in the same round.
12 lines
214 B
C#
12 lines
214 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Doors
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum AirlockWireStatus
|
|
{
|
|
PowerIndicator,
|
|
}
|
|
}
|