Differences From Artifact [2d7b9d4e3c]:
- File heromesh.h — part of check-in [d1b2616e10] at 2020-11-29 23:50:43 on branch trunk — Implement message tracing, fix a few mistakes, start to implement level initialization (user: user, size: 6640) [annotate] [blame] [check-ins using]
To Artifact [585a056cca]:
- File heromesh.h — part of check-in [435ee485bb] at 2020-12-02 05:41:38 on branch trunk — Implement begin_level() and screen_message() (user: user, size: 6676) [annotate] [blame] [check-ins using]
︙ | |||
85 86 87 88 89 90 91 92 93 94 95 96 97 98 | 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | + | extern Uint16 picture_size; extern int left_margin; void draw_picture(int x,int y,Uint16 img); void draw_text(int x,int y,const unsigned char*t,int bg,int fg); void draw_cell(int x,int y); const char*screen_prompt(const char*txt); int screen_message(const char*txt); void load_pictures(void); int scrollbar(int*cur,int page,int max,SDL_Event*ev,SDL_Rect*re); // == class == #define CF_PLAYER 0x01 |
︙ |