Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.sixteencolorgames.sandbox; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.Screen; import com.badlogic.gdx.graphics.GL20; /** * * @author Allen */ public abstract class MenuScreen implements Screen { @Override public void dispose() { } @Override public void resize(int width, int height) { } @Override public void resume() { } @Override public void show() { } @Override public void hide() { } @Override public void pause() { } @Override public void render(float delta) { Gdx.gl.glClearColor(0, 0, 0, 1); Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT); } }