24 lines
463 B
C
24 lines
463 B
C
#ifndef BACK_GEN_H
|
|
#define BACK_GEN_H
|
|
|
|
bool unpack_coord(uint8_t* lines, int cx, int cy);
|
|
|
|
void generate_chunk(int x, int y, int config_id);
|
|
|
|
void print_template(int config_id);
|
|
|
|
void rotateTemplateClockWise(int config_id);
|
|
|
|
void signature(template t);
|
|
|
|
bool is_compat_with_spins(int cx, int cy, int idx);
|
|
|
|
void generate_chunk_all(int cx, int cy);
|
|
|
|
void initialize(SDL_Renderer* renderer);
|
|
|
|
void destroy();
|
|
|
|
void parse_configs(char* filename, int n_conf);
|
|
|
|
#endif |