2021-06-19 10:03:24 +02:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
2021-07-31 04:50:32 -07:00
|
|
|
|
namespace Content.Shared.Body.Metabolism
|
2021-06-19 10:03:24 +02:00
|
|
|
|
{
|
|
|
|
|
|
public class SweatAttemptEvent : CancellableEntityEventArgs
|
|
|
|
|
|
{
|
|
|
|
|
|
public SweatAttemptEvent(IEntity entity)
|
|
|
|
|
|
{
|
|
|
|
|
|
Entity = entity;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public IEntity Entity { get; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|