//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.Persistence.Initialization;
using MUnique.OpenMU.DataModel.Configuration;
///
/// Initializer for a .
///
internal interface IMapInitializer : IInitializer
{
///
/// Sets the .
/// This needs to be done after the first commit, because of possible circular references.
///
void SetSafezoneMap();
}