mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-02-15 03:31:38 +01:00
* first draft * Fixed it all, just need to rename stuff * Rename and add comments * Clean-up * Access added
11 lines
276 B
C#
11 lines
276 B
C#
using Content.Shared.Inventory;
|
|
|
|
namespace Content.Shared.Slippery;
|
|
[ByRefEvent]
|
|
public record struct GetSlowedOverSlipperyModifierEvent() : IInventoryRelayEvent
|
|
{
|
|
SlotFlags IInventoryRelayEvent.TargetSlots => ~SlotFlags.POCKET;
|
|
|
|
public float SlowdownModifier = 1f;
|
|
}
|