2023-11-23 01:26:15 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2023-11-30 20:50:39 +01:00
|
|
|
#include "fenetre.h"
|
|
|
|
#include "plateau_init.h"
|
2023-11-23 01:26:15 +01:00
|
|
|
|
|
|
|
|
2023-11-30 20:50:39 +01:00
|
|
|
int main(void) {
|
2023-11-23 01:26:15 +01:00
|
|
|
|
2023-12-07 11:16:30 +01:00
|
|
|
|
|
|
|
|
2023-12-01 19:06:10 +01:00
|
|
|
start();
|
|
|
|
|
2023-11-23 01:26:15 +01:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|