Exemplo n.º 1
0
 public WebView(ICore core, string url, uint propHash, string targetTexture)
     : this(core, core.CreateWebViewPtr(url, propHash, targetTexture))
 {
     core.WebViewPool.Add(this);
 }
Exemplo n.º 2
0
 public WebView(ICore core, string url, bool isOverlay = false, Vector2?pos = null, Vector2?size = null)
     : this(core, core.CreateWebViewPtr(url, isOverlay, pos, size))
 {
     core.WebViewPool.Add(this);
 }