Files
AdamuSw/src/GameLogic/IWorldObserver.cs
2026-07-14 19:00:35 +03:00

22 lines
591 B
C#

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