2022-08-04 00:05:17 -04:00
|
|
|
namespace Content.Server.Cloning.Components
|
|
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class CloningConsoleComponent : Component
|
2022-08-04 00:05:17 -04:00
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|