equal
deleted
inserted
replaced
23 |
23 |
24 public class Checkers extends JFrame implements Runnable { |
24 public class Checkers extends JFrame implements Runnable { |
25 static final long serialVersionUID = 250408; |
25 static final long serialVersionUID = 250408; |
26 static final String helpURL = "http://largo.homelinux.org/cgi-bin/gitweb.cgi?p=games/Schach.git;a=summary"; |
26 static final String helpURL = "http://largo.homelinux.org/cgi-bin/gitweb.cgi?p=games/Schach.git;a=summary"; |
27 |
27 |
28 MouseListener listener = null; |
28 MouseListener listener; |
29 KIBoard board = null; |
29 KIBoard board; |
30 Point p = null; |
30 Point p; |
31 JLabel human = new JLabel("<html><font size='5' color='#FFFFFF'>Human</font></html>"); |
31 JLabel human = new JLabel("<html><font size='5' color='#FFFFFF'>Human</font></html>"); |
32 JLabel computer = new JLabel("<html><font size='5' color='#FFFFFF'>Computer</font></html>"); |
32 JLabel computer = new JLabel("<html><font size='5' color='#FFFFFF'>Computer</font></html>"); |
33 JButton neu = new JButton("Play"); |
33 JButton neu = new JButton("Play"); |
34 JButton pconly = new JButton("PC-PC"); |
34 JButton pconly = new JButton("PC-PC"); |
35 JButton back = new JButton("Back"); |
35 JButton back = new JButton("Back"); |