24
Content.Server/Cloning/Components/CloningConsoleComponent.cs
Normal file
24
Content.Server/Cloning/Components/CloningConsoleComponent.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
namespace Content.Server.Cloning.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
public sealed class CloningConsoleComponent : Component
|
||||
{
|
||||
public const string ScannerPort = "MedicalScannerSender";
|
||||
|
||||
public const string PodPort = "CloningPodSender";
|
||||
|
||||
[ViewVariables]
|
||||
public EntityUid? GeneticScanner = null;
|
||||
|
||||
[ViewVariables]
|
||||
public EntityUid? CloningPod = null;
|
||||
|
||||
/// Maximum distance between console and one if its machines
|
||||
[DataField("maxDistance")]
|
||||
public float MaxDistance = 4f;
|
||||
|
||||
public bool GeneticScannerInRange = true;
|
||||
|
||||
public bool CloningPodInRange = true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user