2019-08-12 18:00:02 +02:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Shared.Computer
|
2019-08-12 18:00:02 +02:00
|
|
|
{
|
|
|
|
|
[Serializable, NetSerializable]
|
2022-02-03 10:20:17 +11:00
|
|
|
public enum ComputerVisuals : byte
|
2019-08-12 18:00:02 +02:00
|
|
|
{
|
|
|
|
|
// Bool
|
|
|
|
|
Powered,
|
|
|
|
|
|
|
|
|
|
// Bool
|
|
|
|
|
Broken
|
|
|
|
|
}
|
|
|
|
|
}
|