6
StarHorizon_Public/Content.Server/Starshine/AdditionalMap/StationAdditionalMapComponent.cs
2026-01-13 18:31:02 +02:00

25 lines
602 B
C#

/*
* All right reserved to CrystallEdge.
*
* BUT this file is sublicensed under MIT License
*
* BY Ed, discord: eshhhed, github: TheShuEd.
*/
using Robust.Shared.Utility;
namespace Content.Server.Starshine.AdditionalMap;
/// <summary>
/// Loads additional maps from the list at the start of the round.
/// </summary>
[RegisterComponent, Access(typeof(StationAdditionalMapSystem))]
public sealed partial class StationAdditionalMapComponent : Component
{
/// <summary>
/// A map paths to load on a new map.
/// </summary>
[DataField]
public List<ResPath> MapPaths = new();
}