Files
RobustToolbox/Robust.Client.WebView/IWebViewManagerImpl.cs
2021-11-03 15:26:52 +01:00

15 lines
375 B
C#

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
{
void Initialize();
void Update();
void Shutdown();
}
}