All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.lessvoid.nifty.examples.tutorial.screen.Splash Maven / Gradle / Ivy

Go to download

Lots of Nifty example code! You can find the source for nearly all demos/tutorials in here.

There is a newer version: 1.4.3
Show newest version
package de.lessvoid.nifty.examples.tutorial.screen;

import de.lessvoid.nifty.Nifty;
import de.lessvoid.nifty.screen.Screen;
import de.lessvoid.nifty.screen.ScreenController;

import javax.annotation.Nonnull;

public class Splash implements ScreenController {
  private Nifty nifty;

  @Override
  public void bind(@Nonnull final Nifty nifty, @Nonnull final Screen screen) {
    this.nifty = nifty;
  }

  @Override
  public void onStartScreen() {
    nifty.gotoScreen("mainPage");
  }

  @Override
  public void onEndScreen() {
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy