1
0

SharedComputerComponent.cs 177 B

12345678910
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Computer
  3. {
  4. [Serializable, NetSerializable]
  5. public enum ComputerVisuals : byte
  6. {
  7. Powered
  8. }
  9. }