2023-03-10 16:41:22 +11:00
|
|
|
using Robust.Shared.Utility;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Procedural;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Added to pre-loaded maps for dungeon templates.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class DungeonAtlasTemplateComponent : Component
|
2023-03-10 16:41:22 +11:00
|
|
|
{
|
|
|
|
|
[DataField("path", required: true)]
|
2023-04-20 20:16:01 +10:00
|
|
|
public ResPath Path;
|
2023-03-10 16:41:22 +11:00
|
|
|
}
|