13 lines
345 B
C#
13 lines
345 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Ninja.Components;
|
|
|
|
/// <summary>
|
|
/// Component for a Space Ninja's katana, controls ninja related dash logic.
|
|
/// Requires a ninja with a suit for abilities to work.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class EnergyKatanaComponent : Component
|
|
{
|
|
}
|