Files
tbd-station-14/Content.Shared/Tests/TestMarkerComponent.cs
slarticodefast 85e91a7551 Allow InteractionTests to load other maps (#41226)
* load maps and marker

* cleanup

* sneaky doc

* sneaky doc2

---------

Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com>
2025-11-01 04:00:17 +00:00

17 lines
505 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Tests;
/// <summary>
/// Component that is used by integration tests to mark and easily find certain entities on a test map.
/// </summary>
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class TestMarkerComponent : Component
{
/// <summary>
/// A string to keep multiple markers on the same map distinct.
/// </summary>
[DataField, AutoNetworkedField]
public string Id = "marker";
}