Creating Scene

This snippet is the only way to create your scenes

Tutorial on Creating Scenes are now available on Kree's YouTube Channel

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