Hide tabs by default, add code to Vimish to show/hide tabs
[WebThing.git] / WebThingPlugin.cs
1 using WebKit;
2
3 namespace bytex64.WebThing {
4     public abstract class WebThingPlugin {
5         public abstract void Init(WebThing wt);
6         public virtual void InitWebView(WebView wv) {}
7     }
8 }