SAE11_2023/graphique.c

37 lines
666 B
C
Raw Normal View History

2023-11-21 17:00:05 +01:00
#include<stdlib.h>
#include<stdio.h>
#include<graph.h>
#include<time.h>
#define H 40
#define L 60;
2023-11-28 13:23:50 +01:00
void serpent();
2023-11-21 17:00:05 +01:00
void graphique(){
InitialiserGraphique();
CreerFenetre(1700,950,1700,950);
couleur c, b;
b=CouleurParComposante(0,0,0);
ChoisirCouleurDessin(b);
RemplirRectangle(0,0,1750,950);
c=CouleurParComposante(111,255,94);
ChoisirCouleurDessin(c);
RemplirRectangle(100,100,1500,750);
2023-11-28 13:23:50 +01:00
serpent();
2023-11-21 17:00:05 +01:00
Touche();
FermerGraphique();
}
2023-11-28 13:23:50 +01:00
void serpent(){
couleur s = CouleurParComposante(255,255,0);
ChoisirCouleurDessin(s);
RemplirRectangle(100,100,25,25);
}
2023-11-21 17:00:05 +01:00
int main(void){
graphique();
2023-11-28 13:23:50 +01:00
2023-11-21 17:00:05 +01:00
return EXIT_SUCCESS;
}