12 lines
191 B
C#
12 lines
191 B
C#
|
|
using Robust.Shared.Serialization;
|
||
|
|
|
||
|
|
namespace Content.Shared.Toggleable;
|
||
|
|
|
||
|
|
// Appearance Data key
|
||
|
|
[Serializable, NetSerializable]
|
||
|
|
public enum ToggleableLightVisuals
|
||
|
|
{
|
||
|
|
Enabled,
|
||
|
|
Color
|
||
|
|
}
|