Files
tbd-station-14/Content.Shared/Body/Events/ShiverAttemptEvent.cs
2022-02-16 18:23:23 +11:00

15 lines
293 B
C#

using Robust.Shared.GameObjects;
namespace Content.Shared.Body.Events
{
public sealed class ShiverAttemptEvent : CancellableEntityEventArgs
{
public ShiverAttemptEvent(EntityUid uid)
{
Uid = uid;
}
public EntityUid Uid { get; }
}
}