Files
OldThink/Content.Server/GameObjects/Components/Paper/WriteComponent.cs

12 lines
272 B
C#
Raw Normal View History

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