12 lines
227 B
Java
12 lines
227 B
Java
|
public class Connaissance {
|
||
|
STring nom;
|
||
|
Description description;
|
||
|
|
||
|
public Objet(
|
||
|
String nom,
|
||
|
Description description) {
|
||
|
this.nom = nom;
|
||
|
this.description = description;
|
||
|
}
|
||
|
}
|