Skip to content

Commit 0663a9b

Browse files
Doc comments
1 parent e4c6c7a commit 0663a9b

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

Robust.Shared/Map/Commands/MapPausingCommands.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55

66
namespace Robust.Shared.Map.Commands;
77

8+
/// <summary>
9+
/// Pauses a given map, halting all entity processing on it.
10+
/// </summary>
811
public sealed partial class PauseMapCommand : LocalizedEntityCommands
912
{
1013
[Dependency] SharedMapSystem _mapSystem = default!;
@@ -30,6 +33,9 @@ public override void Execute(IConsoleShell shell, string argStr, string[] args)
3033
}
3134
}
3235

36+
/// <summary>
37+
/// Unpauses a given map, resuming all entity processing on it.
38+
/// </summary>
3339
public sealed partial class UnpauseMapCommand : LocalizedEntityCommands
3440
{
3541
[Dependency] SharedMapSystem _mapSystem = default!;
@@ -55,6 +61,9 @@ public override void Execute(IConsoleShell shell, string argStr, string[] args)
5561
}
5662
}
5763

64+
/// <summary>
65+
/// Checks whether a given map is currently paused.
66+
/// </summary>
5867
public sealed partial class QueryMapPausedCommand : LocalizedEntityCommands
5968
{
6069
[Dependency] SharedMapSystem _mapSystem = default!;

0 commit comments

Comments
 (0)