2025-03-26 15:44:44 +01:00

23 lines
458 B
Java

package metier;
/**
* @author emile malcuit
* @version 1
*/
public class sqdd {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
Jeu ju = new Jeu();
Position pos = new Position(10, 10);
Joueur j = new Joueur("j", 12, pos);
Tresor t = new Tresor("coffre", 11, 10);
System.out.println(ju.gagner(t, j));
}
}