summaryrefslogtreecommitdiff
path: root/ws2015/eip/blaetter/07/H7-1A/de/lmu/tcs/Param.java
diff options
context:
space:
mode:
Diffstat (limited to 'ws2015/eip/blaetter/07/H7-1A/de/lmu/tcs/Param.java')
-rw-r--r--ws2015/eip/blaetter/07/H7-1A/de/lmu/tcs/Param.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/ws2015/eip/blaetter/07/H7-1A/de/lmu/tcs/Param.java b/ws2015/eip/blaetter/07/H7-1A/de/lmu/tcs/Param.java
new file mode 100644
index 0000000..5b42421
--- /dev/null
+++ b/ws2015/eip/blaetter/07/H7-1A/de/lmu/tcs/Param.java
@@ -0,0 +1,25 @@
1package de.lmu.tcs;
2
3import java.awt.*;
4
5/**
6 * Sammlung aller extern festgelegten Konstanten
7 *
8 * Created by jost on 24.11.15.
9 */
10public class Param {
11
12 // Konstanten für das Spiel
13 public static final int SPIEL_HÖHE = 50;
14 public static final int SPIEL_BREITE = 80;
15
16 // Konstanten für die View
17 public static final Color FARBE_LEBENDIG = Color.RED;
18 public static final Color FARBE_TOT = Color.WHITE;
19 public static final int SKALIERUNG = 10;
20
21 // Konstanten für Durchführung
22 public static final long RUNDENZEIT = 120;
23 public static final int RUNDENZAHL = 1000;
24
25}