This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package login; | |
| import javafx.event.*; | |
| import javafx.fxml.FXML; | |
| import javafx.scene.control.*; | |
| /** Controls the login screen */ | |
| public class LoginController { | |
| @FXML private TextField user; | |
| @FXML private TextField password; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.awt.*; | |
| import javax.swing.*; | |
| import java.awt.event.*; | |
| /********************************** | |
| This is the main class of a Java program to play a game based on hexagonal tiles. | |
| The mechanism of handling hexes is in the file hexmech.java. | |
| Written by: M.H. | |
| Date: December 2012 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.awt.*; | |
| import javax.swing.*; | |
| import java.awt.event.*; | |
| /********************************** | |
| This is the main class of a Java program to play a game based on hexagonal tiles. | |
| The mechanism of handling hexes is in the file hexmech.java. | |
| Written by: M.H. | |
| Date: December 2012 |