1
0
SAE11_2022/include/main.h

17 lines
289 B
C
Raw Normal View History

#ifndef MAIN_H
#define MAIN_H
#include<graph.h>
typedef struct {
int x, y, L, H;
} Zone;
int checkzone(Zone z, int x, int y);
void dessinerbouton(Zone z, char* texte, couleur arriereplan, couleur bordure, couleur couleurtexte, int tailletexte);
void dessinerzone(Zone z);
#endif