* A very basic paper and pen implementation * Removes SharedWriteComponent * Update ContentNetIDs.cs
12 lines
272 B
C#
12 lines
272 B
C#
using Content.Shared.GameObjects.Components;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.GameObjects.Components.Interactable
|
|
{
|
|
[RegisterComponent]
|
|
public class WriteComponent : Component
|
|
{
|
|
public override string Name => "Write";
|
|
}
|
|
}
|