summaryrefslogtreecommitdiff
path: root/ws2015/eip/blaetter/07/de/lmu/tcs/Param.java
blob: 88f8248d848d9c25554f5cb6878d5c57d70e4db4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package de.lmu.tcs;

import java.awt.*;

/**
 * Sammlung aller extern festgelegten Konstanten
 *
 * Created by jost on 24.11.15.
 */
public class Param {

    // Konstanten für das Spiel
    public static final int SPIEL_HÖHE   = 50;
    public static final int SPIEL_BREITE = 80;

    // Konstanten für die View
    // public static final Color FARBE_LEBENDIG = Color.RED;
    // public static final Color FARBE_TOT      = Color.WHITE;
    public static final Color[] ZELLENFARBE = new Color[] {Color.WHITE, Color.RED, Color.ORANGE, Color.MAGENTA, Color.GREEN, Color.CYAN, Color.BLUE};
    public static final int   SKALIERUNG     = 10;

    // Konstanten für Durchführung
    public static final long  RUNDENZEIT = 120;
    public static final int   RUNDENZAHL = 1000;

}