Example usage for com.badlogic.gdx Screen interface-usage

List of usage examples for com.badlogic.gdx Screen interface-usage

Introduction

In this page you can find the example usage for com.badlogic.gdx Screen interface-usage.

Usage

From source file Screens.Screens.java

/**
 *
 * @author homepro
 */
public abstract class Screens implements Screen {

From source file se.angergard.game.screen.GameFinished.java

public class GameFinished extends BasicGUI implements Screen {

    /**
     * 
     * @param game
     * @param gameFinishType

From source file se.angergard.game.screen.HelpScreen.java

public class HelpScreen extends BasicGUI implements Screen {

    public HelpScreen(MainGame game) {
        this.game = game;
    }

From source file se.angergard.game.screen.SplashScreen.java

public class SplashScreen implements Screen {

    public SplashScreen(MainGame game) {
        this.game = game;
    }

From source file se.danielj.geometridestroyer.Credits.java

/**
 * 
 * @author Daniel Jonsson
 * @license GNU GPLv3
 *
 */

From source file se.danielj.geometridestroyer.GeometriDestroyer.java

/**
 * 
 * @author Daniel Jonsson
 * @license GNU GPLv3
 *
 */

From source file se.danielj.geometridestroyer.LevelScreen.java

/**
 * 
 * @author Daniel Jonsson
 * @license GNU GPLv3
 *
 */

From source file se.theodor.quiz.screen.ChooseQuiz.java

public class ChooseQuiz implements Screen {

    public ChooseQuiz(Quiz quiz, String gameName, Array<Team> teams) {
        this.quiz = quiz;
        this.teams = teams;
        this.gameName = gameName;

From source file se.theodor.quiz.screen.CreateOrLoadQuiz.java

public class CreateOrLoadQuiz implements Screen {

    public CreateOrLoadQuiz(Quiz quiz) {
        this.quiz = quiz;
    }

From source file se.theodor.quiz.screen.CreateQuiz.java

public class CreateQuiz implements Screen {

    public CreateQuiz(Quiz quiz) {
        this.quiz = quiz;
    }