mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
17 lines
365 B
C#
17 lines
365 B
C#
namespace Robust.Shared.GameObjects
|
|
{
|
|
/// <summary>
|
|
/// The children of this entity are about to be deleted.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public readonly struct EntityTerminatingEvent
|
|
{
|
|
public readonly EntityUid Entity;
|
|
|
|
public EntityTerminatingEvent(EntityUid entity)
|
|
{
|
|
Entity = entity;
|
|
}
|
|
}
|
|
}
|