Files
blockandseek/src/main/java/hdvtdev/blockAndSeek/BlockAndSeekMap.java

18 lines
388 B
Java
Raw Normal View History

2025-06-26 01:18:01 +03:00
package hdvtdev.blockAndSeek;
2025-06-28 00:36:06 +03:00
2025-06-26 01:18:01 +03:00
import org.bukkit.inventory.ItemStack;
2025-06-28 00:36:06 +03:00
import org.jetbrains.annotations.NotNull;
2025-06-26 01:18:01 +03:00
import java.util.List;
2025-06-28 00:36:06 +03:00
public record BlockAndSeekMap(List<Integer> spawn, List<Integer> lobby, int duration, int minPlayers, int maxPlayers,
List<Block> blocks) {
2025-06-26 01:18:01 +03:00
2025-06-28 00:36:06 +03:00
public record Block(@NotNull ItemStack block, int chance) {
2025-06-26 01:18:01 +03:00
}
}