18 lines
376 B
Java
18 lines
376 B
Java
public class Objet {
|
|
String nom;
|
|
int taille;
|
|
Condition visible;
|
|
Description description;
|
|
|
|
public Objet(
|
|
String nom,
|
|
int taille,
|
|
Condition visible,
|
|
Description description) {
|
|
this.nom = nom;
|
|
this.taille = taille;
|
|
this.visible = visible;
|
|
this.description = description;
|
|
}
|
|
}
|