Allow swapping out internal WebViewManager implementation.

Everything moved to interfaces.
This commit is contained in:
Pieter-Jan Briers
2021-11-03 15:12:49 +01:00
parent 3770149cfc
commit dae6424667
20 changed files with 775 additions and 547 deletions

View File

@@ -0,0 +1,12 @@
using Robust.Client.WebViewHook;
namespace Robust.Client.WebView
{
/// <summary>
/// Internal implementation of WebViewManager that is switched out by <see cref="IWebViewManagerHook"/>.
/// </summary>
internal interface IWebViewManagerImpl : IWebViewManagerInternal, IWebViewManagerHook
{
}
}