mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-13 17:13:45 +03:00
15 lines
242 B
JavaScript
15 lines
242 B
JavaScript
class Plugin {
|
|
constructor() { }
|
|
|
|
getName() {
|
|
return "Template Plugin";
|
|
}
|
|
|
|
getPageContent() {
|
|
return "Add your own elements here";
|
|
}
|
|
|
|
runCode() {
|
|
console.log("Template Plugin loaded");
|
|
}
|
|
} |