Files
tbd-station-14/Content.Client/GameObjects/Components/Projectiles/ThrownItemComponent.cs
Pieter-Jan Briers bc24a852f9 Fix throwing.
2020-07-02 23:28:37 +02:00

13 lines
346 B
C#

using Content.Shared.GameObjects;
using Robust.Shared.GameObjects;
namespace Content.Client.GameObjects.Components.Projectiles
{
[RegisterComponent]
public class ThrownItemComponent : ProjectileComponent
{
public override string Name => "ThrownItem";
public override uint? NetID => ContentNetIDs.THROWN_ITEM;
}
}