2024-03-28 01:48:37 +01:00
|
|
|
namespace Content.Shared.Body.Events;
|
2021-06-19 10:03:24 +02:00
|
|
|
|
2024-03-28 01:48:37 +01:00
|
|
|
[ByRefEvent]
|
|
|
|
|
public record struct SweatAttemptEvent(EntityUid Uid)
|
|
|
|
|
{
|
|
|
|
|
public readonly EntityUid Uid = Uid;
|
|
|
|
|
public bool Cancelled = false;
|
2021-06-19 10:03:24 +02:00
|
|
|
}
|