Paper and pen (#582)

* A very basic paper and pen implementation

* Removes SharedWriteComponent

* Update ContentNetIDs.cs
This commit is contained in:
adrian
2020-02-11 20:01:05 -03:00
committed by GitHub
parent b965dfea33
commit 9544099c99
9 changed files with 273 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
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";
}
}