diff --git a/prog/plateau.c b/prog/plateau.c new file mode 100644 index 0000000..e68ad89 --- /dev/null +++ b/prog/plateau.c @@ -0,0 +1,17 @@ +/* Création du plateau de jeu avec les pastilles et le serpent + + written by Yann KERAUDREN and Titouan LERICHE*/ + + +#include +#include +#define LIGNES 40 +#define COLONNES 60 + +int* plateau(void) { + + int tableau[LIGNES][COLONNES]; + + + return tableau; +} diff --git a/prog/snake.c b/prog/snake.c new file mode 100644 index 0000000..4e24269 --- /dev/null +++ b/prog/snake.c @@ -0,0 +1,8 @@ +#include +#include + + +int main (void) { + + return EXIT_SUCCESS; +}