Files
OldThink/Content.Shared/Computer/SharedComputerComponent.cs

11 lines
177 B
C#
Raw Permalink Normal View History

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
{
2023-01-15 00:01:47 -04:00
Powered
2019-08-12 18:00:02 +02:00
}
}