mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
13 lines
240 B
C#
13 lines
240 B
C#
namespace Robust.Shared.GameObjects
|
|
{
|
|
public readonly struct PhysicsInitializedEvent
|
|
{
|
|
public readonly EntityUid Uid;
|
|
|
|
public PhysicsInitializedEvent(EntityUid uid)
|
|
{
|
|
Uid = uid;
|
|
}
|
|
}
|
|
}
|