27 lines
725 B
C#
27 lines
725 B
C#
using Content.Shared.Radio;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server.DeltaV.CartridgeLoader.Cartridges;
|
|
|
|
[RegisterComponent, Access(typeof(NanoChatCartridgeSystem))]
|
|
public sealed partial class NanoChatCartridgeComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Station entity to keep track of.
|
|
/// </summary>
|
|
[DataField]
|
|
public EntityUid? Station;
|
|
|
|
/// <summary>
|
|
/// The NanoChat card to keep track of.
|
|
/// </summary>
|
|
[DataField]
|
|
public EntityUid? Card;
|
|
|
|
/// <summary>
|
|
/// The <see cref="RadioChannelPrototype" /> required to send or receive messages.
|
|
/// </summary>
|
|
[DataField]
|
|
public ProtoId<RadioChannelPrototype> RadioChannel = "Common";
|
|
}
|