Deathsbreed 574c562299 There is now a Window that opens to display information, and various new menu
items. There is also a shortcut to quit the application.
2014-05-28 09:38:05 -05:00

16 lines
326 B
Java

package spaceshipsim;
import javax.swing.*;
/**
* @author Nicolás A. Ortega
* @copyright Nicolás A. Ortega
* @license GNU GPLv3
* @year 2014
*
*/
public class Window {
public Window(String title, String infoMessage) {
JOptionPane.showMessageDialog(null, infoMessage, title, JOptionPane.INFORMATION_MESSAGE);
}
}