1
0
Fork 0
forked from len0rd/rockbox
foxbox/apps/plugins/puzzles/help.h
Franklin Wei eca00638ae puzzles: add Slide and Sokoban.
This enables two of the "unfinished" puzzles. Slide requires a new "sticky
mouse mode" to enable dragging. The help system is disabled for these
puzzles, since they lack manual chapters.

Group is currently unplayable due to lack of request_keys() support, which
will need to be added upstream. Separate fails to draw anything.

Change-Id: I7bcff3679ac5b10b0f39c5eaa19a36b4b1fe8d53
2024-08-25 19:30:01 -04:00

18 lines
399 B
C

#include <stdbool.h>
#ifdef ROCKBOX
#include "lib/display_text.h"
#endif
/* defined in help/ */
extern const char help_text[];
#if defined(ROCKBOX) || defined(LZ4TINY)
extern const char quick_help_text[];
extern const unsigned short help_text_len, quick_help_text_len, help_text_words;
#endif
#if defined(ROCKBOX)
extern struct style_text help_text_style[];
#endif
extern const bool help_valid;