/*
* 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;
///
/// Loads additional maps from the list at the start of the round.
///
[RegisterComponent, Access(typeof(StationAdditionalMapSystem))]
public sealed partial class StationAdditionalMapComponent : Component
{
///
/// A map paths to load on a new map.
///
[DataField]
public List MapPaths = new();
}