summaryrefslogtreecommitdiff
path: root/ws2015/eip/blaetter/07/de/lmu/tcs/Param.java
diff options
context:
space:
mode:
Diffstat (limited to 'ws2015/eip/blaetter/07/de/lmu/tcs/Param.java')
-rw-r--r--ws2015/eip/blaetter/07/de/lmu/tcs/Param.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/ws2015/eip/blaetter/07/de/lmu/tcs/Param.java b/ws2015/eip/blaetter/07/de/lmu/tcs/Param.java
deleted file mode 100644
index 88f8248..0000000
--- a/ws2015/eip/blaetter/07/de/lmu/tcs/Param.java
+++ /dev/null
@@ -1,26 +0,0 @@
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 Color[] ZELLENFARBE = new Color[] {Color.WHITE, Color.RED, Color.ORANGE, Color.MAGENTA, Color.GREEN, Color.CYAN, Color.BLUE};
20 public static final int SKALIERUNG = 10;
21
22 // Konstanten für Durchführung
23 public static final long RUNDENZEIT = 120;
24 public static final int RUNDENZAHL = 1000;
25
26}