This draws the screen and "keyboard". I am not certain if I like the keyboard concept. Letter groupings would be more useful.
7 lines
257 B
C++
7 lines
257 B
C++
namespace wordle {
|
|
namespace draw {
|
|
void keyboard(struct screen const& s, void (*draw_char)(uint8_t, int32_t, int32_t, int32_t, int32_t));
|
|
void guesses(struct screen const& s, void (*draw_char)(uint8_t, int32_t, int32_t, int32_t, int32_t));
|
|
}
|
|
}
|