Containment Field Rework (#9312)
This commit is contained in:
@@ -1,6 +1,30 @@
|
||||
namespace Content.Shared.Singularity.Components
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.Singularity.Components;
|
||||
public abstract class SharedContainmentFieldGeneratorComponent : Component { }
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum ContainmentFieldGeneratorVisuals : byte
|
||||
{
|
||||
public abstract class SharedContainmentFieldGeneratorComponent : Component
|
||||
{
|
||||
}
|
||||
PowerLight,
|
||||
FieldLight,
|
||||
OnLight,
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum PowerLevelVisuals : byte
|
||||
{
|
||||
NoPower,
|
||||
LowPower,
|
||||
MediumPower,
|
||||
HighPower,
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum FieldLevelVisuals : byte
|
||||
{
|
||||
NoLevel,
|
||||
On,
|
||||
OneField,
|
||||
MultipleFields,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user