Umorna -- Tiny game written to test 'chads' library, it uses assets from itch.io...
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

26 行
563B

  1. #ifndef UMORNA_MENU
  2. #define UMORNA_MENU
  3. #include "game.h"
  4. #define MENU_LIMIT (24)
  5. #define MINIMENU_LIMIT (24)
  6. enum {
  7. menu_traits, menu_skills, menu_values, menu_resources
  8. };
  9. extern int menu_count;
  10. extern int menu_items [MENU_LIMIT];
  11. extern int menu_show [MENU_LIMIT];
  12. extern int menu_alpha [MENU_LIMIT];
  13. extern char * menu_text [MENU_LIMIT] [MINIMENU_LIMIT];
  14. extern int menu_icon [MENU_LIMIT] [MINIMENU_LIMIT];
  15. extern void (* menu_action [MENU_LIMIT] [MINIMENU_LIMIT]) (void);
  16. extern void menu_configure (void);
  17. #endif