mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-11 16:13:51 +03:00
plugin: Added template plugin
This commit is contained in:
15
template_plugin.js
Normal file
15
template_plugin.js
Normal file
@@ -0,0 +1,15 @@
|
||||
class Plugin {
|
||||
constructor() { }
|
||||
|
||||
getName() {
|
||||
return "Template Plugin";
|
||||
}
|
||||
|
||||
getPageContent() {
|
||||
return "Add your own elements here";
|
||||
}
|
||||
|
||||
runCode() {
|
||||
console.log("Template Plugin loaded");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user