2024-06-05 19:59:39 +03:00
|
|
|
using Robust.Shared.Utility;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server._CP14.StationDungeonMap;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-07-25 15:07:12 +03:00
|
|
|
/// Loads additional maps from the list at the start of the round.
|
2024-06-05 19:59:39 +03:00
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent, Access(typeof(CP14StationAdditionalMapSystem))]
|
|
|
|
|
public sealed partial class CP14StationAdditionalMapComponent : Component
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A map paths to load on a new map.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField]
|
|
|
|
|
public List<ResPath> MapPaths = new();
|
|
|
|
|
}
|