mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 14:52:35 +02:00
13 lines
253 B
C#
13 lines
253 B
C#
namespace Robust.Shared.GameObjects
|
|
{
|
|
public readonly struct EntityInitializedMessage
|
|
{
|
|
public EntityUid Entity { get; }
|
|
|
|
public EntityInitializedMessage(EntityUid entity)
|
|
{
|
|
Entity = entity;
|
|
}
|
|
}
|
|
}
|