Lager setGameState metode og getWinningPlayerName metode

Co-Authored-By: torlunjen <torlunjen@users.noreply.github.com>
This commit is contained in:
GabrielMagnus 2020-04-14 15:19:23 +02:00
parent 83e0d2ceee
commit 48afdfd9f9

View File

@ -63,4 +63,15 @@ public interface IDrawableGame {
*/ */
GameState getGameState(); GameState getGameState();
/**
* Sets the current state og the game
*/
void setGameState(GameState gameState);
/**
* Gets the name of the player who won
* @return A string of the player name
*/
String getWinningPlayerName();
} }