Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Groupe3-TicTacToe
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BAHRMAN Louis
Groupe3-TicTacToe
Commits
894ee3aa
Commit
894ee3aa
authored
Mar 22, 2019
by
franck.tempet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
d2d8111c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
49 deletions
+0
-49
CoupTicTacToe.java
src/tictactoecodingame/CoupTicTacToe.java
+0
-0
CoupTicTacToe3x3.java
src/tictactoecodingame/CoupTicTacToe3x3.java
+0
-49
No files found.
src/tictactoecodingame/CoupTicTacToe
9x9
.java
→
src/tictactoecodingame/CoupTicTacToe.java
View file @
894ee3aa
File moved
src/tictactoecodingame/CoupTicTacToe3x3.java
deleted
100644 → 0
View file @
d2d8111c
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package
tictactoecodingame
;
/**
*
* @author franck.tempet
*/
public
class
CoupTicTacToe3x3
extends
Coup
{
private
int
colonne
,
ligne
;
private
Jeton
jeton
;
public
CoupTicTacToe3x3
(
int
_colonne
,
int
_ligne
,
Jeton
_jeton
)
{
super
();
colonne
=
_colonne
;
ligne
=
_ligne
;
jeton
=
_jeton
;
}
public
int
getColonne
()
{
return
colonne
;
}
public
int
getLigne
()
{
return
ligne
;
}
public
Jeton
getJeton
()
{
return
jeton
;
}
public
String
toString
()
{
return
"("
+
colonne
+
","
+
ligne
+
")"
;
}
@Override
public
boolean
equals
(
Object
obj
)
{
throw
new
UnsupportedOperationException
(
"Not supported yet."
);
//To change body of generated methods, choose Tools | Templates.
}
@Override
public
int
hashCode
()
{
throw
new
UnsupportedOperationException
(
"Not supported yet."
);
//To change body of generated methods, choose Tools | Templates.
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment