Files
tbd-station-14/Content.Shared/Computer/SharedComputerComponent.cs
2022-05-13 17:59:03 +10:00

15 lines
226 B
C#

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