Created
August 23, 2016 03:16
-
-
Save sirsavary/2c9b33bc73d3bb205811c9de3432009f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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