fish-station/Content.Shared/_Sunrise/Jump/JumpComponent.cs

11 lines
327 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared._Sunrise.Jump;
[NetworkedComponent, RegisterComponent]
public sealed partial class JumpComponent : Component
{
public Dictionary<string, int> OriginalCollisionMasks { get; } = new();
public Dictionary<string, int> OriginalCollisionLayers { get; } = new();
};