15 lines
354 B
C#
15 lines
354 B
C#
|
|
namespace Content.Server.Codewords;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Container for generated codewords.
|
|||
|
|
/// </summary>
|
|||
|
|
[RegisterComponent, Access(typeof(CodewordSystem))]
|
|||
|
|
public sealed partial class CodewordComponent : Component
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// The codewords that were generated.
|
|||
|
|
/// </summary>
|
|||
|
|
[DataField]
|
|||
|
|
public string[] Codewords = [];
|
|||
|
|
}
|