15 lines
434 B
C#
15 lines
434 B
C#
// src/AcDream.Plugin.Abstractions/IPluginHost.cs
|
|
namespace AcDream.Plugin.Abstractions;
|
|
|
|
/// <summary>
|
|
/// Entry point for a plugin into the acdream runtime. The surface will grow
|
|
/// across phases as more systems come online.
|
|
/// </summary>
|
|
public interface IPluginHost
|
|
{
|
|
IPluginLogger Log { get; }
|
|
IGameState State { get; }
|
|
IEvents Events { get; }
|
|
ISelectionService Selection { get; }
|
|
IUiRegistry Ui { get; }
|
|
}
|