10 lines
236 B
C#
10 lines
236 B
C#
|
|
namespace Content.Shared.Ninja.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Makes this warp point a valid bombing target for ninja's spider charge.
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent]
|
||
|
|
public sealed partial class BombingTargetComponent : Component
|
||
|
|
{
|
||
|
|
}
|