Example plugin added·

This commit is contained in:
BinarySandia04 2024-09-27 01:01:25 +02:00
parent 88a5a5b02e
commit b04ac1ae40
3 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,7 @@
/* This is an example plugin for Dragonroll */
function Main(Api){
console.log("Hello World!");
}
export { Main };

View File

@ -0,0 +1,4 @@
{
"name": "Dragonroll example plugin",
"entrypoint": "main.js"
}

View File

@ -0,0 +1,3 @@
{
"test": "Test"
}