mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
14 lines
257 B
C#
14 lines
257 B
C#
namespace Robust.Shared.GameObjects
|
|
{
|
|
[ByRefEvent]
|
|
public readonly struct PhysicsInitializedEvent
|
|
{
|
|
public readonly EntityUid Uid;
|
|
|
|
public PhysicsInitializedEvent(EntityUid uid)
|
|
{
|
|
Uid = uid;
|
|
}
|
|
}
|
|
}
|