//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.GameLogic;
///
/// Interface for an implementation which provides an .
///
public interface IGameServerContextProvider
{
///
/// Gets the game server context.
///
IGameServerContext Context { get; }
}