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

21 lines
332 B
C#
Raw Normal View History

2019-08-12 18:00:02 +02:00
using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Computer
2019-08-12 18:00:02 +02:00
{
public class SharedComputerComponent : Component
{
}
[Serializable, NetSerializable]
public enum ComputerVisuals
{
// Bool
Powered,
// Bool
Broken
}
}