Umorna -- Tiny game written to test 'chads' library, it uses assets from itch.io...
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

27 lignes
559B

  1. #ifndef UMORNA_ENGINE
  2. #define UMORNA_ENGINE
  3. #define menu_limit (24)
  4. #define menu_item_limit (24)
  5. enum {
  6. menu_traits, menu_skills, menu_values
  7. };
  8. extern int camera_x;
  9. extern int camera_y;
  10. extern void render_side (void);
  11. extern void render_menu (int menu, int x, int y, int small, int align, int alpha);
  12. extern void render_map (int offset_x, int offset_y);
  13. extern void bind (int signal, void (* action) (void));
  14. extern void unbind (int signal);
  15. extern void layout_configure (void);
  16. extern void layout_synchronize (void);
  17. #endif