Formalized plugin interface
[WebThing.git] / plugins / FFNav.cs
index 4f22b63..f8ba39c 100644 (file)
@@ -2,10 +2,10 @@ using System;
 using Gtk;
 using bytex64.WebThing;
 
-public class Plugin {
+public class FFNav : WebThingPlugin {
     WebThing wt;
 
-    public Plugin(WebThing wt) {
+    public void Init(WebThing wt) {
         this.wt = wt;
         wt.WebView.KeyPressEvent += WebView_KeyPress;
     }