2018-09-12 06:39:55 +00:00
|
|
|
package com.seodisparate.TurnBasedMinecraft.common;
|
|
|
|
|
2018-09-14 05:14:10 +00:00
|
|
|
import org.apache.logging.log4j.Logger;
|
|
|
|
|
2018-09-12 06:39:55 +00:00
|
|
|
public class CommonProxy
|
|
|
|
{
|
|
|
|
public void setBattleGuiTime(int timeRemaining) {}
|
|
|
|
|
|
|
|
public void setBattleGuiBattleChanged() {}
|
|
|
|
|
|
|
|
public void setBattleGuiAsGui() {}
|
|
|
|
|
|
|
|
public void battleGuiTurnBegin() {}
|
|
|
|
|
|
|
|
public void battleGuiTurnEnd() {}
|
2018-09-14 03:44:45 +00:00
|
|
|
|
|
|
|
public void battleEnded() {}
|
2018-09-14 05:14:10 +00:00
|
|
|
|
|
|
|
public void postInit() {}
|
|
|
|
|
|
|
|
public void setLogger(Logger logger) {}
|
|
|
|
|
|
|
|
public void playBattleMusic() {}
|
|
|
|
|
|
|
|
public void playSillyMusic() {}
|
|
|
|
|
|
|
|
public void stopMusic() {}
|
|
|
|
|
|
|
|
public void typeEnteredBattle(String type) {}
|
|
|
|
|
|
|
|
public void setConfig(Config config) {}
|
2018-09-12 06:39:55 +00:00
|
|
|
}
|