Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
339 Bytes
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);
}
}