13 lines
362 B
C#
13 lines
362 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared._White.CharacterExamine;
|
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
public sealed partial class DetailExaminableComponent : Component
|
|
{
|
|
[DataField("content", required: true)]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[AutoNetworkedField]
|
|
public string Content = "";
|
|
}
|