12 lines
243 B
C#
12 lines
243 B
C#
|
|
#nullable enable
|
|||
|
|
using Robust.Shared.GameObjects;
|
|||
|
|
|
|||
|
|
namespace Content.Server.GameObjects.Components.Botany
|
|||
|
|
{
|
|||
|
|
[RegisterComponent]
|
|||
|
|
public class ShovelComponent : Component
|
|||
|
|
{
|
|||
|
|
public override string Name => "Shovel";
|
|||
|
|
}
|
|||
|
|
}
|