Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import javax.swing.*;
  2. import java.awt.*;
  3.  
  4.  
  5.  
  6.  
  7. public class LowFrame extends JFrame
  8. {
  9. public LowFrame()
  10. {
  11. setSize(800,700);
  12. setBackground(Color.white);
  13. setVisible(true);
  14. add(new LolCanvas());
  15.  
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement