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.
23 lines
354 B
23 lines
354 B
package view;
|
|
|
|
import model.CapteurVirtuel;
|
|
import model.Observateur;
|
|
|
|
public class Image implements Observateur {
|
|
|
|
public float temperature;
|
|
|
|
/*
|
|
public void __construct(float temperature){
|
|
this.temperature = new Capteur("Test").getTemperature();
|
|
}
|
|
*/
|
|
public void initialize(){
|
|
|
|
}
|
|
|
|
public void update() {
|
|
|
|
}
|
|
}
|