using Robust.Shared.Prototypes;
namespace Content.Server.Codewords;
///
/// Component that defines to use and keeps track of generated codewords.
///
[RegisterComponent, Access(typeof(CodewordSystem))]
public sealed partial class CodewordManagerComponent : Component
{
///
/// The generated codewords. The value contains the entity that has the
///
[DataField]
[ViewVariables(VVAccess.ReadOnly)]
public Dictionary, EntityUid> Codewords = new();
}