import javax.swing.JPanel;
import javax.swing.JApplet;
import javax.swing.BorderFactory;
import java.awt.Color;
import java.awt.BorderLayout;

/**
 * This class represents an applet that shows a VideoPokerPanel in its
 * content area.  To display the panel correctly, the size of the applet
 * should be 581 pixels in height at about 275 pixels in width.
 */
public class NotVideoPokerApplet extends JApplet {
	
	public void init() {
		JPanel panel = new VideoPokerPanel();
		JPanel mainPanel = new JPanel();
		mainPanel.setLayout(new BorderLayout());
		mainPanel.add(panel, BorderLayout.CENTER);
		setContentPane(mainPanel);
	}

}

