M431-ShadowHunterGame/src/ihm/ZoneJoueurThread.java
2020-05-01 19:09:48 +02:00

23 lines
317 B
Java

package ihm;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.Pane;
public class ZoneJoueurThread extends Thread {
private boolean finished;
public ZoneJoueurThread(AnchorPane anchorPane, Pane pane) {
this.finished = false;
}
public void run() {
while(!finished) {
}
}
}