mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
13 lines
322 B
C#
13 lines
322 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, IWebViewManagerHook
|
|
{
|
|
|
|
}
|
|
}
|