I'm trying to make a Java applet with a menu (stretching across the screen with different mode options), and I want to make it have two different modes.
Is the best way to do this making two different applets that are run by a application, or should I use something different like a JFrame
(I would rather use an Applet
), or should I use a bunch of if statements in the paint method and such?