Re-organize all projects (#4166)
This commit is contained in:
29
Content.Shared/Light/SharedPoweredLightVisuals.cs
Normal file
29
Content.Shared/Light/SharedPoweredLightVisuals.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
#nullable enable
|
||||
using System;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.Light
|
||||
{
|
||||
[Serializable, NetSerializable]
|
||||
public enum PoweredLightVisuals : byte
|
||||
{
|
||||
BulbState,
|
||||
BulbColor,
|
||||
Blinking
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum PoweredLightState : byte
|
||||
{
|
||||
Empty,
|
||||
On,
|
||||
Off,
|
||||
Broken,
|
||||
Burned
|
||||
}
|
||||
|
||||
public enum PoweredLightLayers : byte
|
||||
{
|
||||
Base
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user