25 lines
602 B
C#
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();
|
|
}
|