10 lines
285 B
C#
10 lines
285 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Administration.Components;
|
|
|
|
/// <summary>
|
|
/// Flips the target's sprite on its head, so they do a headstand.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class HeadstandComponent : Component;
|