using Content.Server.Power.Components; using Content.Shared._White.CartridgeLoader.Cartridges; namespace Content.Server._White.Radio.Components; /// /// Entities with are needed to transmit messages using PDAs. /// They also need to be powered by /// in order for them to work on the same map as server. /// [RegisterComponent] public sealed partial class MessagesServerComponent : Component { /// /// Dictionary translating IDs to MessagesUser /// [DataField] public Dictionary Dictionary = new(); }