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