mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 07:12:27 +02:00
15 lines
335 B
C#
15 lines
335 B
C#
namespace Robust.Shared.GameObjects
|
|
{
|
|
public sealed class EntityPausedEvent : EntityEventArgs
|
|
{
|
|
public EntityUid Entity { get; }
|
|
public bool Paused { get; }
|
|
|
|
public EntityPausedEvent(EntityUid entity, bool paused)
|
|
{
|
|
Entity = entity;
|
|
Paused = paused;
|
|
}
|
|
}
|
|
}
|