Advertisement
kuchuz

PBO-C EAS : BoardFrame

Jan 11th, 2021
1,210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. package chessgui;
  2.  
  3. public class ChessGUI {
  4.    
  5.     public BoardFrame boardframe;
  6.     public static void main(String[] args) {
  7.         ChessGUI gui = new ChessGUI();
  8.         gui.boardframe = new BoardFrame();
  9.         gui.boardframe.setVisible(true);
  10.        
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement