Rogue: Savage Rats, a retro-themed dungeon crawler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
rogue-savage-rats/src/mightypork/gamecore/gui/screens/Screen.java

35 lines
613 B

package mightypork.gamecore.gui.screens;
import mightypork.gamecore.control.AppAccess;
import mightypork.gamecore.render.Renderable;
import mightypork.util.math.constraints.rect.proxy.RectBound;
/**
* Game screen
*
* @author MightyPork
*/
public interface Screen extends Renderable, RectBound, AppAccess {
/**
* Prepare for being shown
*
* @param shown true to show, false to hide
*/
void setActive(boolean shown);
/**
* @return true if screen is the current screen
*/
boolean isActive();
/**
* @return screen identifier to be used for requests.
*/
String getName();
}