From 239bb2dd332072ac1ffede3a4831d18490ca1de6 Mon Sep 17 00:00:00 2001 From: robin moussu Date: Thu, 5 Feb 2015 22:35:45 +0100 Subject: Add a cat assistant! --- src/ncurses_ui.cc | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/ncurses_ui.cc b/src/ncurses_ui.cc index 135af8f8..0003b4f5 100644 --- a/src/ncurses_ui.cc +++ b/src/ncurses_ui.cc @@ -693,7 +693,19 @@ template static String make_info_box(StringView title, StringView message, CharCount max_width) { - static const Vector assistant = + static const Vector cat_assistant = + { " ___ ", + " / __) ", + " \\ \\ ╭", + " .·' '. │", + " ” ' ╯", + " |\\_/\\ ╯ ", + " / . | ", + " | | | ’l_╯ ", + " \\_ -__/ ' ", + " /_/ /_/ ", + " "}; + static const Vector trombon_assistant = { " ╭──╮ ", " │ │ ", " @ @ ╭", @@ -702,6 +714,8 @@ static String make_info_box(StringView title, StringView message, " │╰─╯│ ", " ╰───╯ ", " " }; + static const Vector assistant = trombon_assistant; + CharCoord assistant_size; if (assist) assistant_size = { (int)assistant.size(), assistant[0].char_length() }; -- cgit v1.2.3