mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
15 lines
375 B
C#
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();
|
|
}
|
|
}
|