Guest User

Untitled

a guest
Oct 22nd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public boolean onStart() {
  2. Environment.disableRandoms();
  3. try {
  4. SwingUtilities.invokeAndWait(new Runnable() {
  5. public void run() {
  6. form gui = new form();
  7. gui.setVisible(true);
  8. }
  9. });
  10. }
  11. catch (InterruptedException e){}
  12. catch (InvocationTargetException e){}
  13. return running;
  14. }
Add Comment
Please, Sign In to add comment