Skip to content

Commit 2896c62

Browse files
authored
Add files via upload
0 parents  commit 2896c62

36 files changed

+3522
-0
lines changed

untitled folder/3d board.png

1.89 MB
Loading

untitled folder/Background.png

1.99 MB
Loading

untitled folder/Main.class

825 Bytes
Binary file not shown.

untitled folder/Main.ctxt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#BlueJ class context
2+
comment0.params=args
3+
comment0.target=void\ main(java.lang.String[])
4+
numComments=1

untitled folder/Main.java

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import javax.swing.JFrame;
2+
3+
public class Main
4+
{
5+
public static void main(String[] args)
6+
{
7+
JFrame frame = new JFrame();
8+
frame.setBounds(0, 0, 900, 900);
9+
10+
frame.setTitle("Tic Tac Toe");
11+
frame.setResizable(false);
12+
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
13+
14+
TicTacToeGame game = new TicTacToeGame();
15+
frame.add(game);
16+
frame.setVisible(true);
17+
}
18+
}
19+

untitled folder/README.TXT

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
------------------------------------------------------------------------
2+
This is the project README file. Here, you should describe your project.
3+
Tell the reader (someone who does not know anything about this project)
4+
all he/she needs to know. The comments should usually include at least:
5+
------------------------------------------------------------------------
6+
7+
PROJECT TITLE:
8+
PURPOSE OF PROJECT:
9+
VERSION or DATE:
10+
HOW TO START THIS PROJECT:
11+
AUTHORS:
12+
USER INSTRUCTIONS:
20.9 KB
Binary file not shown.

untitled folder/TicTacToeGame.ctxt

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
#BlueJ class context
2+
comment0.params=
3+
comment0.target=TicTacToeGame()
4+
comment1.params=g
5+
comment1.target=void\ paint(java.awt.Graphics)
6+
comment10.params=g
7+
comment10.target=void\ selectScreen(java.awt.Graphics)
8+
comment11.params=g
9+
comment11.target=void\ player1Win(java.awt.Graphics)
10+
comment12.params=g
11+
comment12.target=void\ player2Win(java.awt.Graphics)
12+
comment13.params=g
13+
comment13.target=void\ tieScreen(java.awt.Graphics)
14+
comment14.params=
15+
comment14.target=void\ resetBoard()
16+
comment15.params=e
17+
comment15.target=void\ mouseClicked(java.awt.event.MouseEvent)
18+
comment16.params=e
19+
comment16.target=void\ mousePressed(java.awt.event.MouseEvent)
20+
comment17.params=e
21+
comment17.target=void\ mouseReleased(java.awt.event.MouseEvent)
22+
comment18.params=e
23+
comment18.target=void\ mouseEntered(java.awt.event.MouseEvent)
24+
comment19.params=e
25+
comment19.target=void\ mouseExited(java.awt.event.MouseEvent)
26+
comment2.params=g
27+
comment2.target=void\ startScreen(java.awt.Graphics)
28+
comment3.params=g
29+
comment3.target=void\ drawBoard(java.awt.Graphics)
30+
comment4.params=g
31+
comment4.target=void\ playerSelect(java.awt.Graphics)
32+
comment5.params=
33+
comment5.target=void\ computerMove()
34+
comment6.params=
35+
comment6.target=void\ checkWinner()
36+
comment7.params=
37+
comment7.target=void\ checkWinner3d()
38+
comment8.params=amount
39+
comment8.target=void\ delay(int)
40+
comment9.params=g
41+
comment9.target=void\ hardBoard(java.awt.Graphics)
42+
numComments=20

0 commit comments

Comments
 (0)