Drones (#6448)
This commit is contained in:
22
Content.Shared/Drone/SharedDroneSystem.cs
Normal file
22
Content.Shared/Drone/SharedDroneSystem.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using Robust.Shared.GameObjects;
|
||||
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
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user