INNER CODE UNIT · Java
EditorToggler
BSVogler/WurfelEngineSDK · core/src/main/java/editor/EditorToggler.java:21
public class EditorToggler {
private Image pauseButton;
private Image resetButton;
private Image playButton;
private final float offsetX = 50;
private final float offsetY = 50;
private GameView gameView;
private boolean visible = true;
/**
* Set the gameView which are used for the current game.
*
* @param view the gameView used for play-mode
*/
public void setGameView(GameView view) {
this.gameView = view;
}