Skip to content

Instantly share code, notes, and snippets.

@sirsavary
Created August 23, 2016 03:16
Show Gist options
  • Select an option

  • Save sirsavary/2c9b33bc73d3bb205811c9de3432009f to your computer and use it in GitHub Desktop.

Select an option

Save sirsavary/2c9b33bc73d3bb205811c9de3432009f to your computer and use it in GitHub Desktop.
public abstract class MordrumGui extends MalisisGui {
public MordrumGui() {
this.setup();
}
@Override
public void construct() {
this.clearScreen();
this.setup();
}
/**
* Place to setup screen components
*/
public abstract void setup();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment