001package fr.aumgn.dac2.game;
002
003import fr.aumgn.dac2.stage.Stage;
004
005public interface Game extends Stage {
006
007 /**
008 * Callback called when a new turn starts.
009 * (ie. all players have jumped once since the last one)
010 */
011 void onNewTurn();
012}