init: finish implementation niveau dans le jeu

This commit is contained in:
2026-03-24 22:32:59 +01:00
parent f8cf66f731
commit ca614a198b
19 changed files with 329 additions and 82 deletions

View File

@@ -0,0 +1,20 @@
import java.awt.Image;
//-----------------------------------------------------------------------------
// Classe permettant de définir pour moi ce qu'est un fond d'écran pour mon jeu
//-----------------------------------------------------------------------------
public class Background {
private Image image;
public Background(Image image){
this.image = image;
}
public Image getImage(){
return image;
}
}