Files
tbd-station-14/Content.Server/GameObjects/Components/Paper/WriteComponent.cs
adrian 9544099c99 Paper and pen (#582)
* A very basic paper and pen implementation

* Removes SharedWriteComponent

* Update ContentNetIDs.cs
2020-02-12 00:01:05 +01:00

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