Files
OldThink/Content.Server/_White/InteractiveBoard/InteractiveBoardComponent.cs
CaypenNow b635d4efaf [Feat] Interactive Board (#258)
* interactive board

* change2

* fixes
2024-04-02 17:17:43 +03:00

15 lines
402 B
C#

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;
}