Files
tbd-station-14/Content.Shared/Computer/SharedComputerComponent.cs
2022-02-03 10:20:17 +11:00

17 lines
273 B
C#

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