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 27 28 29
| class Execution extends Thread{
//
public static int nbJeux = 0;
//
public static int score;
public static long instant;
public static int[] resultat = new int[5];
public static long[] resultatTps =new long[5];
//
private static int i;
private static long tps;
private static int s, w, h, rayon, min, xmax, ymax;
private static Disque c;
private Panneau p;
public Execution (Panneau p){
this.p = p;
c = p.d;
w = TpsReac.LARGEUR;
h = TpsReac.HAUTEUR;
rayon = p.d.getRayon();
min = rayon;
xmax = w - rayon;
ymax = h - rayon;
//
nbJeux++;
//System.out.println("Jeu n°" + nbJeux);
}
.....etc.... |