15 lines
226 B
C#
15 lines
226 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Computer
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum ComputerVisuals : byte
|
|
{
|
|
// Bool
|
|
Powered,
|
|
|
|
// Bool
|
|
Broken
|
|
}
|
|
}
|