15 lines
288 B
C#
15 lines
288 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Shared.Body.Metabolism
|
|
{
|
|
public class SweatAttemptEvent : CancellableEntityEventArgs
|
|
{
|
|
public SweatAttemptEvent(EntityUid uid)
|
|
{
|
|
Uid = uid;
|
|
}
|
|
|
|
public EntityUid Uid { get; }
|
|
}
|
|
}
|