16 lines
397 B
C#
16 lines
397 B
C#
|
|
namespace Content.Server.EnergyDome;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// marker component that allows linking the dome generator with the dome itself
|
||
|
|
/// </summary>
|
||
|
|
|
||
|
|
[RegisterComponent, Access(typeof(EnergyDomeSystem))]
|
||
|
|
public sealed partial class EnergyDomeComponent : Component
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// A linked generator that uses energy
|
||
|
|
/// </summary>
|
||
|
|
[DataField]
|
||
|
|
public EntityUid? Generator;
|
||
|
|
}
|