> For the complete documentation index, see [llms.txt](https://kree.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kree.gitbook.io/documentation/code-snippets/launcher.md).

# Launcher

{% code title="Launcher.java" %}

```java
public class Launcher {

    public static void main(String[] args) {

        Game game = new Game(new Window("My Game", 800, 600));

        GameScene gameScene = new GameScene(game);

        SceneManager.setScene(gameScene);

        // start must always be in the end of the main method
        game.start();

    }

}
```

{% endcode %}
