6
2026-01-13 18:31:02 +02:00

14 lines
372 B
C#

namespace Content.Shared.Chemistry.Events;
/// <summary>
/// Raised directed on an entity when it embeds in another entity.
/// </summary>
[ByRefEvent]
public readonly record struct InjectOverTimeEvent(EntityUid embeddedIntoUid)
{
/// <summary>
/// Entity that is embedded in.
/// </summary>
public readonly EntityUid EmbeddedIntoUid = embeddedIntoUid;
}