diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-10-23 12:54:53 +0300 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-10-23 12:54:53 +0300 |
commit | 331c625220d4db0efabb0709cc64849eb11d5422 (patch) | |
tree | 6e0c3be14532bfa79cd40b23ed96d4f63e4e71f4 | |
parent | d1c96c5afc615f2015ce1b3f7b7692a3a68c4812 (diff) | |
download | rulmarc-331c625220d4db0efabb0709cc64849eb11d5422.tar.gz rulmarc-331c625220d4db0efabb0709cc64849eb11d5422.tar.bz2 rulmarc-331c625220d4db0efabb0709cc64849eb11d5422.zip |
chore: update greet string
-rw-r--r-- | menu/menu.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/menu/menu.go b/menu/menu.go index 8b7ac16..25776c3 100644 --- a/menu/menu.go +++ b/menu/menu.go @@ -27,7 +27,7 @@ func CreateMenu(stdscr *Window, menu []GameMenuItem) { win, _ := NewWindow(HEIGHT, WIDTH, y, x) win.Keypad(true) - stdscr.Print("Use arrow keys to go up and down, Press enter to select") + stdscr.Print("Welcome to Rulmarc, the Role-playing game using LLMs") stdscr.Refresh() printmenu(win, menu, active) |