//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.Persistence.Initialization;
///
/// Interface for an initializer.
///
public interface IInitializer
{
///
/// Runs the initializer which creates the initial data.
///
void Initialize();
}