Files
OldThink/Content.Server/_White/InteractiveBoard/InteractiveBoardComponent.cs

15 lines
402 B
C#
Raw Permalink Normal View History

using Content.Shared._White.InteractiveBoard;
using Robust.Shared.GameStates;
namespace Content.Server._White.InteractiveBoard;
[NetworkedComponent, RegisterComponent]
public sealed partial class InteractiveBoardComponent : SharedInteractiveBoardComponent
{
public InteractiveBoardAction Mode;
public string Content { get; set; } = "";
public int ContentSize { get; set; } = 6000;
}