first commit

This commit is contained in:
hdvt
2025-06-21 03:11:55 +03:00
commit 8c55754509
32 changed files with 805 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package hdvtdev.blockAndSeek;
import org.bukkit.plugin.java.JavaPlugin;
public final class BlockAndSeek extends JavaPlugin {
@Override
public void onEnable() {
// Plugin startup logic
}
@Override
public void onDisable() {
// Plugin shutdown logic
}
}