Files
tbd-station-14/Content.Shared/Throwing/ThrownItemComponent.cs
2021-07-16 17:37:09 -07:00

13 lines
257 B
C#

using Robust.Shared.GameObjects;
namespace Content.Shared.Throwing
{
[RegisterComponent]
public class ThrownItemComponent : Component
{
public override string Name => "ThrownItem";
public IEntity? Thrower { get; set; }
}
}