* load maps and marker * cleanup * sneaky doc * sneaky doc2 --------- Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com>
17 lines
505 B
C#
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";
|
|
}
|