mirror of
https://github.com/DanilaFe/abacus
synced 2024-12-23 16:00:09 -08:00
Add initialization code to AbacusController
This commit is contained in:
parent
0b173a68dd
commit
d42172ce03
|
@ -1,5 +1,15 @@
|
||||||
package org.nwapw.abacus.fx;
|
package org.nwapw.abacus.fx;
|
||||||
|
|
||||||
|
import javafx.fxml.FXML;
|
||||||
|
import org.nwapw.abacus.Abacus;
|
||||||
|
|
||||||
public class AbacusController {
|
public class AbacusController {
|
||||||
|
|
||||||
|
private Abacus abacus;
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
public void initialize(){
|
||||||
|
abacus = new Abacus();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user