Game Loop

This shows the high level sequence of events that makes up the full game.

flowchart TB
    A[User] --> B[Start Game]
    B --> D[Company Intro Animation Splash]

    subgraph Splash_Screens
        direction TB
        D[Company Intro Animation Splash]
        D --> E[Made with Godot Splash]
        E --> F[Controller Recommended Splash]
    end

    F --> G[Main Menu]

    subgraph Adira Sunset
        direction TB
        G --> H[Game Settings]
        G --> I[Play Game]
        G --> J[Exit Game]
    end

    subgraph Save_Slots
        direction TB
        I --> K[Save Slot 1]
        I --> L[Save Slot 2]
        I --> M[Save Slot 3]
    end

    K --> O[Chapter 3]
    L --> N[Chapter 2]
    M --> P[Chapter 1]

    subgraph Chapters
        direction TB
        N --> O[Chapter 2]
        O --> P[Chapter 3]
        P --> Q[Chapter N + 1]
        Q --> Q
        Q --> R[End Game]
    end