/** * This class just exists to run the overall program and pop up the GUI on screen. * @author Marty Stepp * @version CSE 331 Spring 2011, 5/2/2011 */ public class RockPaperScissorsMain { public static void main(String[] args) { new RockPaperScissorsGui(); } }