Advertisement
SageTheWizard

csgoTriviaGUI.java

Apr 23rd, 2018
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.75 KB | None | 0 0
  1. /*
  2.   Author: Jacob Gallucci
  3.   Course: CMPSC 221
  4.   Assignment: Programming Assignment 4 - Trivia Game Super GUI Edition
  5.   Due date: 4/24/2018
  6.   File: csgoTriviaGUI.java
  7.   Purpose: csgoTriviaGUI.java game - Driver for GUI .. All this really does is start the gui
  8.   Compiler/IDE: OpenJDK 1.8.0_151 (compiled from CLI) - Atom / Vim text editors
  9.   Operating system: Debian Stretch 9
  10.   Reference(s): Classes are classes nothing was referenced to make this
  11. */
  12. import java.io.*;
  13. import javax.swing.*;
  14.  
  15. public class csgoTriviaGUI extends JFrame
  16. {
  17.   public static void main(String[] args)
  18.   {
  19.  
  20.     BorderLayoutFrame screen = new BorderLayoutFrame(); // makes a new screen
  21.     screen.setVisible(true); // makes screen visible
  22.   }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement