-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainpageController.java
executable file
·58 lines (50 loc) · 1.24 KB
/
MainpageController.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package grid;
import java.io.IOException;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
/**
* FXML Controller class
*
* @author niket
*/
public class MainpageController implements Initializable {
@FXML
private StackPane root;
@FXML
private Button playgame;
@FXML
private Button resumegame;
@FXML
private Button settings;
public Game game;
public Stage stage;
static Player[] players=new Player[8];
public void set_game(Stage st)
{
stage = st;
}
/**
* Initializes the controller class.
*/
@FXML
private void handleButtonClick(ActionEvent event) throws IOException, ClassNotFoundException
{
System.out.println("hi");
game.start_game();
}
@Override
public void initialize(URL url, ResourceBundle rb) {
// TODO
}
}