13 lines
304 B
C#
13 lines
304 B
C#
using Content.Shared.Ninja.Systems;
|
|
|
|
namespace Content.Client.Ninja.Systems;
|
|
|
|
/// <summary>
|
|
/// Currently does nothing special clientside.
|
|
/// All functionality is in shared and server.
|
|
/// Only exists to prevent crashing.
|
|
/// </summary>
|
|
public sealed class SpaceNinjaSystem : SharedSpaceNinjaSystem
|
|
{
|
|
}
|