13 lines
257 B
C#
13 lines
257 B
C#
namespace Content.Shared.Body.Events
|
|
{
|
|
public sealed class SweatAttemptEvent : CancellableEntityEventArgs
|
|
{
|
|
public SweatAttemptEvent(EntityUid uid)
|
|
{
|
|
Uid = uid;
|
|
}
|
|
|
|
public EntityUid Uid { get; }
|
|
}
|
|
}
|