Réorganisation des fichiers et création du fichier Makefile

This commit is contained in:
2023-11-30 20:50:39 +01:00
parent 9f64e553ce
commit a7e9587cbc
6 changed files with 15 additions and 191 deletions

10
snake/main.c Normal file
View File

@@ -0,0 +1,10 @@
#include <stdlib.h>
#include <stdio.h>
#include "fenetre.h"
#include "plateau_init.h"
int main(void) {
return EXIT_SUCCESS;
}