diff --git a/src/plugin.coffee b/src/plugin.coffee new file mode 100644 index 000000000..02eb9adb1 --- /dev/null +++ b/src/plugin.coffee @@ -0,0 +1,11 @@ +module.exports = +class Plugin + constructor: (@window) -> + console.log "Loaded Plugin: " + @.constructor.name + + # Called after the window is fully loaded + initialize: -> + + # Called when @window is closed + destroy: -> +