Delta-v/Content.Shared/Computer/SharedComputerComponent.cs

15 lines
226 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Computer
{
[Serializable, NetSerializable]
public enum ComputerVisuals : byte
{
// Bool
Powered,
// Bool
Broken
}
}