๐Ÿ“ฆ sleepyfran / duets

๐Ÿ“„ MainMenu.fs ยท 19 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19[<RequireQualifiedAccess>]
module Duets.Cli.Text.MainMenu

let incompatibleSavegame =
    Styles.error "Your savegame is incompatible or malformed and was ignored"

let prompt = "Select an option to begin"
let newGame = "New game"
let loadGame = "Load game"
let settings = "Settings"
let exit = Styles.faded "Exit"

let savegameNotAvailable =
    Styles.error "No savegame available. Create a new game"

let newGameReplacePrompt =
    Styles.danger
        "Creating a new game will replace your current savegame and all the progress will be lost, are you sure?"