21 lines
393 B
C#
21 lines
393 B
C#
|
|
using Robust.Shared.Serialization;
|
||
|
|
|
||
|
|
namespace Content.Shared.Drone
|
||
|
|
{
|
||
|
|
public abstract class SharedDroneSystem : EntitySystem
|
||
|
|
{
|
||
|
|
[Serializable, NetSerializable]
|
||
|
|
public enum DroneVisuals : byte
|
||
|
|
{
|
||
|
|
Status
|
||
|
|
}
|
||
|
|
|
||
|
|
[Serializable, NetSerializable]
|
||
|
|
public enum DroneStatus : byte
|
||
|
|
{
|
||
|
|
Off,
|
||
|
|
On
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|