mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
* Grid tile lookup system * Make grid updates better for lookup Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com>
15 lines
366 B
C#
15 lines
366 B
C#
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Interfaces.GameObjects;
|
|
|
|
namespace Robust.Server.GameObjects.EntitySystemMessages
|
|
{
|
|
public sealed class EntityDeletedMessage : EntitySystemMessage
|
|
{
|
|
public IEntity Entity { get; }
|
|
|
|
public EntityDeletedMessage(IEntity entity)
|
|
{
|
|
Entity = entity;
|
|
}
|
|
}
|
|
} |