Java tutorial
/* * (c) Jeroen van den Enden <info@endroid.nl> * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ package nl.endroid.app.platform.screen; import com.badlogic.gdx.graphics.Color; import nl.endroid.framework.screen.BaseScoreScreen; public class ScoreScreen extends BaseScoreScreen { // LIFECYCLE @Override protected void configure() { backgroundColor = new Color(0.0f, 0.64f, 0.99f, 1.0f); } }