mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
17 lines
418 B
C#
17 lines
418 B
C#
using System.Collections.Generic;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.GameStates;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Robust.Shared.Map.Components;
|
|
|
|
/// <summary>
|
|
/// Stores what grids moved in a tick.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class MovedGridsComponent : Component
|
|
{
|
|
[ViewVariables]
|
|
public HashSet<EntityUid> MovedGrids = new();
|
|
}
|