Commit 5eca5a8c authored by hosein's avatar hosein

play -> updated

parent 80bf4e90
package pack;
public class Play {
}
public static void main(String[] args){
Game game = new Game();
game.startGame();
boolean continue_ = true;
do {
continue_ = game.play(game.getInput());
game.showPlayGround();
}while (continue_);
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment