feat: check for collisions with other tetrominos

This commit is contained in:
Martin Prokoph
2025-06-28 19:32:26 +02:00
parent 41af446f94
commit 7aa1b0e73c
6 changed files with 39 additions and 17 deletions

View File

@@ -1,7 +1,7 @@
package eu.midnightdust.yaytris.util;
public enum Difficulty {
NOOB(2000), EASY(1200), NORMAL(1000), HARD(750), EXTREME(500), WTF(100);
NOOB(2000), EASY(1200), NORMAL(1000), HARD(750), EXTREME(100), WTF(30);
private final int timerPeriod;
Difficulty(int timerPeriod) {