idk some "cool" stuff

This commit is contained in:
hdvt
2025-06-26 01:18:01 +03:00
parent 15aca87742
commit 54eb07cc86
24 changed files with 1072 additions and 195 deletions

View File

@@ -0,0 +1,13 @@
package hdvtdev.blockAndSeek;
import org.bukkit.inventory.ItemStack;
import java.util.List;
public record BlockAndSeekMap(List<Integer> spawn, List<Integer> lobby, int duration, List<Block> blocks) {
public record Block(ItemStack block, int chance) {
}
}