using System; using Robust.Shared.Map; using YamlDotNet.RepresentationModel; namespace Robust.Server.Maps { public interface IMapLoader { IMapGrid? LoadBlueprint(MapId mapId, string path); IMapGrid? LoadBlueprint(MapId mapId, string path, MapLoadOptions options); void SaveBlueprint(GridId gridId, string yamlPath); void LoadMap(MapId mapId, string path); void LoadMap(MapId mapId, string path, MapLoadOptions options); void SaveMap(MapId mapId, string yamlPath); event Action LoadedMapData; } }