mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
Uses the following Cherry-Picks: https://github.com/space-wizards/space-station-14/pull/26994 https://github.com/space-wizards/space-station-14/pull/26518 https://github.com/space-wizards/space-station-14/pull/26279 https://github.com/space-wizards/space-station-14/pull/24946 https://github.com/space-wizards/space-station-14/pull/27188 Requires: https://github.com/Simple-Station/Einstein-Engines/pull/535 https://github.com/Simple-Station/Einstein-Engines/pull/534 --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Co-authored-by: Jake Huxell <JakeHuxell@pm.me> Co-authored-by: Tayrtahn <tayrtahn@gmail.com> Co-authored-by: 0x6273 <0x40@keemail.me> Co-authored-by: DEATHB4DEFEAT <zachcaffee@outlook.com>
24 lines
702 B
C#
24 lines
702 B
C#
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Map;
|
|
using Robust.Shared.Map.Components;
|
|
|
|
namespace Content.IntegrationTests.Pair;
|
|
|
|
/// <summary>
|
|
/// Simple data class that stored information about a map being used by a test.
|
|
/// </summary>
|
|
public sealed class TestMapData
|
|
{
|
|
public EntityUid MapUid { get; set; }
|
|
public Entity<MapGridComponent> Grid;
|
|
public MapId MapId;
|
|
public EntityCoordinates GridCoords { get; set; }
|
|
public MapCoordinates MapCoords { get; set; }
|
|
public TileRef Tile { get; set; }
|
|
|
|
// Client-side uids
|
|
public EntityUid CMapUid { get; set; }
|
|
public EntityUid CGridUid { get; set; }
|
|
public EntityCoordinates CGridCoords { get; set; }
|
|
}
|