Back to project page SnowLand.
The source code is released under:
GNU General Public License
If you think the Android project SnowLand listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.walrus.game; /* w w w. ja v a 2s . c o m*/ import com.walrus.framework.Game; import com.walrus.framework.Graphics; import com.walrus.framework.Screen; import com.walrus.framework.Graphics.ImageFormat; public class SplashLoadingScreen extends Screen { public SplashLoadingScreen(Game game) { super(game); } @Override public void update(float deltaTime) { Graphics g = game.getGraphics(); Assets.splash= g.newImage("splash.png", ImageFormat.RGB565); game.setScreen(new LoadingScreen(game)); } @Override public void paint(float deltaTime) { } @Override public void pause() { } @Override public void resume() { } @Override public void dispose() { } @Override public void backButton() { } }