baseline: OpenMU upstream b5a0961 (fresh source)
This commit is contained in:
19
src/Persistence/Initialization/IMapInitializer.cs
Normal file
19
src/Persistence/Initialization/IMapInitializer.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
// <copyright file="IMapInitializer.cs" company="MUnique">
|
||||
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
|
||||
// </copyright>
|
||||
|
||||
namespace MUnique.OpenMU.Persistence.Initialization;
|
||||
|
||||
using MUnique.OpenMU.DataModel.Configuration;
|
||||
|
||||
/// <summary>
|
||||
/// Initializer for a <see cref="GameMapDefinition"/>.
|
||||
/// </summary>
|
||||
internal interface IMapInitializer : IInitializer
|
||||
{
|
||||
/// <summary>
|
||||
/// Sets the <see cref="GameMapDefinition.SafezoneMap"/>.
|
||||
/// This needs to be done after the first commit, because of possible circular references.
|
||||
/// </summary>
|
||||
void SetSafezoneMap();
|
||||
}
|
||||
Reference in New Issue
Block a user