Initial commit

This commit is contained in:
Tenkuma 2025-12-30 11:53:41 -03:00 committed by GitHub
commit 580c915af8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 606 additions and 0 deletions

View file

@ -0,0 +1,7 @@
name: "Your Plugin"
version: ${version}
main: com.example.yourplugin
api-version: '1.21'
author: 'Your Name'
website: "https://example.com"
description: "Put a description here"

View file

@ -0,0 +1,16 @@
package com.example.yourplugin;
import org.bukkit.plugin.java.JavaPlugin;
public class Main extends JavaPlugin {
@Override
public void onEnable() {
getLogger().info("Example plugin is enabled.");
}
@Override
public void onDisable() {
getLogger().info("Example plugin is disabled.");
}
}

View file

@ -0,0 +1,7 @@
name: "Your Plugin"
version: ${version}
main: com.example.yourplugin
api-version: '1.21'
author: 'Your Name'
website: "https://example.com"
description: "Put a description here"