13 lines
271 B
C#
13 lines
271 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Weapons.Ranged.Components;
|
|
|
|
/// <summary>
|
|
/// Embeds this entity inside of the hit target.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed class EmbeddableProjectileComponent : Component
|
|
{
|
|
|
|
}
|