Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Quentin DRUAULT-AUBIN
lo23-project
Commits
7d1f4a1e
Commit
7d1f4a1e
authored
Dec 05, 2017
by
Quentin DRUAULT-AUBIN
Browse files
[Facade] Change showGame signature
parent
db6af770
Changes
2
Hide whitespace changes
Inline
Side-by-side
Battleship/src/main/java/com/utclo23/ihmtable/IHMTableFacade.java
View file @
7d1f4a1e
...
...
@@ -132,10 +132,9 @@ public class IHMTableFacade implements IIHMTableToIHMMain, IIHMTableToData {
/**
* Join a current game.
* @param guid : id of the game.
*/
@Override
public
void
showGame
(
Game
game
)
{
public
void
showGame
()
{
//Créer la fenêtre
FXMLLoader
paneLoader
=
new
FXMLLoader
(
getClass
().
getResource
(
FXML_PATH
));
Parent
pane
;
...
...
Battleship/src/main/java/com/utclo23/ihmtable/IIHMTableToIHMMain.java
View file @
7d1f4a1e
...
...
@@ -5,8 +5,6 @@
*/
package
com.utclo23.ihmtable
;
import
com.utclo23.data.structure.Game
;
import
java.rmi.server.UID
;
import
javafx.stage.Stage
;
/**
...
...
@@ -17,5 +15,5 @@ public interface IIHMTableToIHMMain {
public
void
showSavedGameWithId
(
int
id
);
public
void
createInGameGUI
(
Stage
primaryStage
);
public
void
stopTimer
();
public
void
showGame
(
Game
game
);
public
void
showGame
();
}
Write
Preview
Supports
Markdown
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