Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package chess;
  7.  
  8. import chess.Frame.Frame1;
  9.  
  10. /**
  11. *
  12. * @author Angel
  13. */
  14. public class Chess {
  15.  
  16. /**
  17. * Chess 4 fun
  18. */
  19. public static void main(String[] args) {
  20.  
  21. Tablero tablero = new Tablero();
  22.  
  23. Frame1 frame = new Frame1(tablero);
  24. }
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement