Mes TD de programmation orientée objet (INSA Toulouse)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Indestructible.java 379B

1234567891011
  1. import java.awt.Color ;
  2. public class Indestructible extends Robot {
  3. public Indestructible (String name, String nomImage, int init_x, int init_y, Plateau pt, Color col, int sn) {
  4. super(name, nomImage, init_x, init_y, pt, col, sn);
  5. }
  6. @Override public void explose() {
  7. //System.out.println("Tu as essayé de me tuer, mais je suis INDESTRUCTIBLE !");
  8. }
  9. }