This repository has been archived on 2024-12-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
OCRudoku/src/menus/selection_menu.h
Lilian1024 061f3696f5
All checks were successful
continuous-integration/drone/push Build is passing
feat added remove_mini_clusters
2024-12-07 13:50:52 +01:00

29 lines
558 B
C

#include "../utils/EZ_UI/EZ_utils.h"
#include "../utils/Spliting/Spliting.h"
#ifndef SELECTION_MENU_H
#define SELECTION_MENU_H
extern EZ_MENU selection_menu;
void load_selection_menu(SDL_Renderer* renderer);
void selection_menu_enter(void);
extern int auto_split_grid;
extern int auto_split_words;
extern size_t grid_index;
extern pixel_cluster** cluster_splitting;
extern size_t linkage_length;
extern size_t* array_length;
extern int grid_x, grid_y;
extern char** grid;
extern size_t words_nb;
extern size_t* word_len;
extern char** words;
#endif