13 lines
400 B
C#
13 lines
400 B
C#
namespace Content.Server.Nutrition;
|
|
|
|
/// <summary>
|
|
/// Raised directed at the consumer when attempting to ingest something.
|
|
/// </summary>
|
|
public sealed class IngestionAttemptEvent : CancellableEntityEventArgs
|
|
{
|
|
/// <summary>
|
|
/// The equipment that is blocking consumption. Should only be non-null if the event was canceled.
|
|
/// </summary>
|
|
public EntityUid? Blocker = null;
|
|
}
|