
de.lessvoid.nifty.examples.tutorial.TutorialExample Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nifty-examples Show documentation
Show all versions of nifty-examples Show documentation
Lots of Nifty example code! You can find the source for nearly all demos/tutorials in here.
The newest version!
package de.lessvoid.nifty.examples.tutorial;
import de.lessvoid.nifty.Nifty;
import de.lessvoid.nifty.examples.NiftyExample;
import javax.annotation.Nonnull;
/**
* @author Aaron Mahan <[email protected]>
*/
public class TutorialExample implements NiftyExample {
@Nonnull
@Override
public String getStartScreen() {
return "start";
}
@Override
public String getMainXML() {
return "tutorial/tutorial.xml";
}
@Nonnull
@Override
public String getTitle() {
return "Nifty 1.2 Tutorial";
}
@Override
public void prepareStart(Nifty nifty) {
// nothing to do
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy