mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
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
|
|
}
|
|
}
|
|
}
|