Files
tbd-station-14/Content.Shared/DetailExaminable/DetailExaminableComponent.cs
Milon f5eafc7ed3 make the detailed examine verb predicted (#35362)
can we stop predicting things
2025-02-21 11:30:06 -08:00

11 lines
312 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.DetailExaminable;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class DetailExaminableComponent : Component
{
[DataField(required: true), AutoNetworkedField]
public string Content = string.Empty;
}