17 lines
461 B
C#
17 lines
461 B
C#
using Robust.Shared.Utility;
|
|
|
|
namespace Content.Server._CP14.StationDungeonMap;
|
|
|
|
/// <summary>
|
|
/// Loads additional maps from the list at the start of the round.
|
|
/// </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();
|
|
}
|