Co-authored-by: ss14-Starlight <ss14-Starlight@outlook.com> Co-authored-by: Rinary <rinary.super@gmail.com> Co-authored-by: SplikZerys <136282037+SplikZerys@users.noreply.github.com>
11 lines
207 B
C#
11 lines
207 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._Sunrise.Switchable;
|
|
|
|
// Appearance Data key
|
|
[Serializable, NetSerializable]
|
|
public enum SwitchableLightVisuals : byte
|
|
{
|
|
Enabled,
|
|
Color
|
|
}
|