A few "minor" features are missing, including showing the correct word if you get it wrong.
7 lines
279 B
C++
7 lines
279 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, enum clue));
|
|
void guesses(struct screen const& s, void (*draw_char)(uint8_t, int32_t, int32_t, int32_t, int32_t, enum clue));
|
|
}
|
|
}
|