File size: 339 Bytes
c574d3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
package client.src.vues.tictactoe;
import java.io.IOException;
import client.src.vues.BaseVue;
public class NewTicTacToeVue extends BaseVue {
public NewTicTacToeVue() throws IOException {
super("TicTacToeVue.fxml");
this.setTitle("TicTacToe");
this.setMinWidth(600);
this.setMinHeight(400);
}
} |