21 lines
332 B
C#
21 lines
332 B
C#
using System;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Computer
|
|
{
|
|
public class SharedComputerComponent : Component
|
|
{
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum ComputerVisuals
|
|
{
|
|
// Bool
|
|
Powered,
|
|
|
|
// Bool
|
|
Broken
|
|
}
|
|
}
|