baseline: OpenMU upstream b5a0961 (fresh source)
This commit is contained in:
22
src/GameLogic/IWorldObserver.cs
Normal file
22
src/GameLogic/IWorldObserver.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
// <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; }
|
||||
}
|
||||
Reference in New Issue
Block a user