Creating Scene
This snippet is the only way to create your scenes
public class SceneNameHere extends Scene {
public Scene(Game game) {
super(game);
}
@Override
public void Initialize() {
}
@Override
public void Update() {
}
@Override
public void Render(Graphics g) {
}
}
Last updated
Was this helpful?