summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerWolv <werwolv98@gmail.com>2022-03-31 15:55:40 +0200
committerGitHub <noreply@github.com>2022-03-31 15:55:40 +0200
commit661e9aac7db3738e07fad22a50659a7a81628d08 (patch)
tree7e933b7ac5c93581fe328b6520adcb156e0f8427
parent545c322594a9cd28cea7b9d6cca2b4460332ba7c (diff)
downloaddecky-loader-661e9aac7db3738e07fad22a50659a7a81628d08.tar.gz
decky-loader-661e9aac7db3738e07fad22a50659a7a81628d08.zip
plugin: Added template plugin
-rw-r--r--template_plugin.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/template_plugin.js b/template_plugin.js
new file mode 100644
index 00000000..9eb63118
--- /dev/null
+++ b/template_plugin.js
@@ -0,0 +1,15 @@
+class Plugin {
+ constructor() { }
+
+ getName() {
+ return "Template Plugin";
+ }
+
+ getPageContent() {
+ return "Add your own elements here";
+ }
+
+ runCode() {
+ console.log("Template Plugin loaded");
+ }
+ } \ No newline at end of file