mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-07 02:08:17 +02:00
* Change EntityQuery to not get paused by default * GetAllComponents * Fix shell commands Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com>
13 lines
301 B
C#
13 lines
301 B
C#
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.GameObjects.Components;
|
|
|
|
namespace Robust.Client.GameObjects.Components
|
|
{
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(SharedIgnorePauseComponent))]
|
|
public sealed class IgnorePauseComponent : SharedIgnorePauseComponent
|
|
{
|
|
|
|
}
|
|
}
|