Added global variables for local config

This commit is contained in:
Felix Kirchner
2025-05-03 15:48:03 +02:00
parent 7a9747b78c
commit 037a1e2cd7
4 changed files with 17 additions and 11 deletions

View File

@@ -8,4 +8,7 @@ class Globals {
gameList.add(session);
gameList.sort((a, b) => b.createdAt.compareTo(a.createdAt));
}
static int pointLimit = 100;
static int caboPenalty = 5;
}