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