Guest User

Untitled

a guest
Jul 18th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. import java.awt.GridLayout;
  2.  
  3. import javax.swing.JApplet;
  4.  
  5.  
  6.  
  7. public class MastermindApplet extends  JApplet {
  8.     public void init()
  9.     {
  10.         this.setLayout(new GridLayout(1,1));
  11.         this.add(new MastermindIHM(-1,-1));
  12. //      mmihm.setSize(300, 600);
  13.     }
  14.  
  15. }
Add Comment
Please, Sign In to add comment