2022-09-05 17:55:44 -07:00
|
|
|
using Content.Shared.Actions;
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
2023-05-07 08:07:24 +02:00
|
|
|
namespace Content.Shared.DeviceNetwork.Systems;
|
2022-09-05 17:55:44 -07:00
|
|
|
|
|
|
|
|
public abstract class SharedNetworkConfiguratorSystem : EntitySystem
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class ClearAllOverlaysEvent : InstantActionEvent
|
2022-09-05 17:55:44 -07:00
|
|
|
{
|
|
|
|
|
}
|
2023-05-07 08:07:24 +02:00
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public enum NetworkConfiguratorVisuals
|
|
|
|
|
{
|
|
|
|
|
Mode
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public enum NetworkConfiguratorLayers
|
|
|
|
|
{
|
|
|
|
|
ModeLight
|
|
|
|
|
}
|