Delta-v/Content.Shared/Body/Events/SweatAttemptEvent.cs

15 lines
284 B
C#

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