mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-07-11 23:32:00 +00:00
plugin: Added template plugin
This commit is contained in:
@@ -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