42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
using Content.Server.Station;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Utility;
|
|
|
|
namespace Content.Server.Maps;
|
|
|
|
/// <summary>
|
|
/// Prototype data for a game map.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Forks should not directly edit existing parts of this class.
|
|
/// Make a new partial for your fancy new feature, it'll save you time later.
|
|
/// </remarks>
|
|
[Prototype("gameMap"), PublicAPI]
|
|
public sealed partial class GameMapPrototype : IPrototype
|
|
{
|
|
/// <inheritdoc/>
|
|
[IdDataField]
|
|
public string ID { get; } = default!;
|
|
|
|
/// <summary>
|
|
/// Name of the map to use in generic messages, like the map vote.
|
|
/// </summary>
|
|
[DataField("mapName", required: true)]
|
|
public string MapName { get; } = default!;
|
|
|
|
/// <summary>
|
|
/// Relative directory path to the given map, i.e. `/Maps/saltern.yml`
|
|
/// </summary>
|
|
[DataField("mapPath", required: true)]
|
|
public ResourcePath MapPath { get; } = default!;
|
|
|
|
[DataField("stations", required: true)]
|
|
private Dictionary<string, StationConfig> _stations = new();
|
|
|
|
/// <summary>
|
|
/// The stations this map contains. The names should match with the BecomesStation components.
|
|
/// </summary>
|
|
public IReadOnlyDictionary<string, StationConfig> Stations => _stations;
|
|
}
|