Déplacement de grille.c dans le dossier src

This commit is contained in:
stiti 2023-11-29 13:32:01 +01:00
parent 84759f2e50
commit 03cdfc7172
2 changed files with 36 additions and 1 deletions

35
src/grille.c Normal file
View File

@ -0,0 +1,35 @@
#include <stdlib.h>
#include <stdio.h>
#include <graph.h>
int* creer_grille(void){
int* Grille=NULL;
Grille=(int*) malloc(40*60*sizeof(int));
return Grille;
}
void creer_grille_graph(){
int x=200,y=200;
ChoisirCouleurDessin(CouleurParComposante(0,0,0));
DessinerRectangle(x,y,1200,1000);
DessinerRectangle(x,y,900,600);
for(x=200;x<1100;x=x+15){
DessinerSegment(x,y,x,800);
}
x=200;
y=200;
for(y=200;y<800;y=y+15){
DessinerSegment(x,y,1100,y);
}
}
int main(void){
char x;
InitialiserGraphique();
CreerFenetre(0,0,1300,1300);
creer_grille_graph();
while(x != 'q'){
scanf("%c",&x);
}
}

View File

@ -52,7 +52,7 @@ void afficherMenuModesDeJeu(){
} }
void afficherMenuCheatCode(){ void afficherMenuCheatCode(){
ChargerImageFond("menu_cheat_code.png") ChargerImageFond("menu_cheat_code.png");
} }
int attendreChoixModesDeJeu(){ int attendreChoixModesDeJeu(){