mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-03 02:27:08 +02:00
13 lines
260 B
C#
13 lines
260 B
C#
namespace Robust.Shared.GameObjects
|
|
{
|
|
public sealed class EntityDeletedMessage : EntityEventArgs
|
|
{
|
|
public EntityUid Entity { get; }
|
|
|
|
public EntityDeletedMessage(EntityUid entity)
|
|
{
|
|
Entity = entity;
|
|
}
|
|
}
|
|
}
|