commit a238ab299a461872519f884acad218cd860bdc16 Author: Henry Hiles Date: Sat Apr 23 08:36:48 2022 +0000 Initial commit diff --git a/index.json b/index.json new file mode 100644 index 0000000..21efd02 --- /dev/null +++ b/index.json @@ -0,0 +1,6 @@ +{ + "name": "PluginTemplate", + "id": "plugin-template", + "description": "A template for future Kernel plugin development.", + "dependencies": [] +} \ No newline at end of file diff --git a/main.js b/main.js new file mode 100644 index 0000000..773f535 --- /dev/null +++ b/main.js @@ -0,0 +1 @@ +// Do stuff in the main context of discord. \ No newline at end of file diff --git a/preload.js b/preload.js new file mode 100644 index 0000000..76ba115 --- /dev/null +++ b/preload.js @@ -0,0 +1 @@ +// Do something in the preload of discord. \ No newline at end of file diff --git a/renderer.js b/renderer.js new file mode 100644 index 0000000..77b786e --- /dev/null +++ b/renderer.js @@ -0,0 +1,9 @@ +export default new class PluginTemplate { + start() { + console.log("Hello World!"); + } + + stop() { + console.log("Bye World!"); + } +} \ No newline at end of file