* Optimise emergency lights a bit * Fixes * Delete the failing test, sinple * Revert "Delete the failing test, sinple" This reverts commit 7d9e3a3bb6975c15add2987e39e0d3ba85d88be3. * Start server and fix test It just werks
33 lines
760 B
C#
33 lines
760 B
C#
using System;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Light.Component
|
|
{
|
|
[NetworkedComponent]
|
|
public abstract class SharedEmergencyLightComponent : Robust.Shared.GameObjects.Component
|
|
{
|
|
public override string Name => "EmergencyLight";
|
|
|
|
public bool Enabled { get; set; } = false;
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class EmergencyLightComponentState : ComponentState
|
|
{
|
|
public bool Enabled;
|
|
|
|
public EmergencyLightComponentState(bool enabled)
|
|
{
|
|
Enabled = enabled;
|
|
}
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum EmergencyLightVisuals
|
|
{
|
|
On,
|
|
}
|
|
}
|