2023-06-13 19:33:50 +00:00
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
2024-01-28 18:37:24 +07:00
|
|
|
namespace Content.Shared._White.CharacterExamine;
|
2023-06-13 19:33:50 +00:00
|
|
|
|
|
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
|
|
|
public sealed partial class DetailExaminableComponent : Component
|
|
|
|
|
{
|
|
|
|
|
[DataField("content", required: true)]
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
[AutoNetworkedField]
|
|
|
|
|
public string Content = "";
|
|
|
|
|
}
|