//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.GameLogic;
using MUnique.OpenMU.GameLogic.Views;
using MUnique.OpenMU.PlugIns;
///
/// Interface of an world observer.
///
public interface IWorldObserver : ILoggerOwner
{
///
/// Gets the view plug ins.
///
///
/// The view plug ins.
///
ICustomPlugInContainer ViewPlugIns { get; }
}