* Brrrr ECS * Create lit on powered system * Light bulb ECS * Finishing porting to ECS * Minor touches * Removed events * Removed old comments * Fixed test * To popup system
28 lines
451 B
C#
28 lines
451 B
C#
using Robust.Shared.Serialization;
|
|
using System;
|
|
|
|
namespace Content.Shared.Light
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum LightBulbState : byte
|
|
{
|
|
Normal,
|
|
Broken,
|
|
Burned,
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum LightBulbVisuals : byte
|
|
{
|
|
State,
|
|
Color
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum LightBulbType : byte
|
|
{
|
|
Bulb,
|
|
Tube,
|
|
}
|
|
}
|