File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -17,20 +17,21 @@ import (
17
17
"github.com/charmbracelet/lipgloss"
18
18
)
19
19
20
- var pausedMsg = ` ____ __
20
+ const (
21
+ pausedMsg = ` ____ __
21
22
/ __ \____ ___ __________ ____/ /
22
23
/ /_/ / __ ^/ / / / ___/ _ \/ __ /
23
- / ____/ /_/ / /_/ (__ ) __/ /_/ /
24
+ / ____/ /_/ / /_/ (__ ) __/ /_/ /
24
25
/_/ \__,_/\__,_/____/\___/\__,_/
25
26
Press PAUSE to continue or HOLD to exit.`
26
27
27
- var gameOverMsg = ` ______ ____
28
+ gameOverMsg = ` ______ ____
28
29
/ ____/___ _____ ___ ___ / __ \_ _____ _____
29
30
/ / __/ __ ^/ __ ^__ \/ _ \ / / / / | / / _ \/ ___/
30
31
/ /_/ / /_/ / / / / / / __/ / /_/ /| |/ / __/ /
31
32
\____/\__,_/_/ /_/ /_/\___/ \____/ |___/\___/_/
32
-
33
- Press EXIT or HOLD to continue.`
33
+ Press EXIT or HOLD to continue.`
34
+ )
34
35
35
36
var _ tea.Model = & Model {}
36
37
You can’t perform that action at this time.
0 commit comments