|
|
@ -1,5 +1,6 @@ |
|
|
|
package TicTacToe; |
|
|
|
|
|
|
|
import java.awt.Color; |
|
|
|
import java.awt.Graphics; |
|
|
|
import java.awt.Graphics2D; |
|
|
|
import java.awt.geom.Line2D; |
|
|
@ -23,6 +24,7 @@ public class TicTacToeGame extends JPanel { |
|
|
|
|
|
|
|
public TicTacToeGame() { |
|
|
|
this.setSize(width, height); |
|
|
|
setBackground(Color.black); |
|
|
|
setLayout(null); |
|
|
|
initField(); |
|
|
|
initScoreboard(); |
|
|
@ -68,6 +70,7 @@ public class TicTacToeGame extends JPanel { |
|
|
|
protected void paintComponent(Graphics g) { |
|
|
|
super.paintComponent(g); |
|
|
|
Graphics2D g2 = (Graphics2D) g; |
|
|
|
g2.setColor(Color.white); |
|
|
|
|
|
|
|
Line2D lin = new Line2D.Float(250, 150, 250, 450); |
|
|
|
Line2D lin2 = new Line2D.Float(350, 150, 350, 450); |
|
|
|