Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Author: Jacob Gallucci
- E-mail: [email protected]
- Course: CMPSC 221
- Assignment: Programming Assignment 4 - Trivia Game Super GUI Edition
- Due date: 4/24/2018
- File: csgoTriviaGUI.java
- Purpose: csgoTriviaGUI.java game - Driver for GUI .. All this really does is start the gui
- Compiler/IDE: OpenJDK 1.8.0_151 (compiled from CLI) - Atom / Vim text editors
- Operating system: Debian Stretch 9
- Reference(s): Classes are classes nothing was referenced to make this
- */
- import java.io.*;
- import javax.swing.*;
- public class csgoTriviaGUI extends JFrame
- {
- public static void main(String[] args)
- {
- BorderLayoutFrame screen = new BorderLayoutFrame(); // makes a new screen
- screen.setVisible(true); // makes screen visible
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement