I am calling the method to start game from the AppwarpS2 server with the below snippet and the Game is Turnbased
@Override
public void onTimerTick(long time){
if(readyToStart){
ArrayList<IUser> players = (ArrayList<IUser>) turnRoom.getJoinedUsers();
turnRoom.startGame(players.get(0).getName());
readyToStart = false;
return;
}
if(!turnRoom.isGameStarted()){
return;
}
}
Now I am unable to get the callback in the listener under client sdk for the starting the game. Is there any way that we can get the players indicated to start the game?
Also the onStopGameDone() is not getting any call back so that we can identify for the game to be stopped at a particular point