INFO505 Programmation C
Loading...
Searching...
No Matches
TP3
gtktetris-1.c
1
// gtktetris.c
2
#include <stdlib.h>
3
#include <math.h>
4
#include <gtk/gtk.h>
5
#include "tetris.h"
6
7
int
main(
int
argc,
8
char
*argv[] )
9
{
10
Grille g;
11
Piece
tabPieces[ NB_PIECES ];
12
genererPieces( tabPieces );
13
initialiseGrille( g );
14
afficheGrille( g );
15
return
0;
16
}
SPiece
Definition
tetris-1.h:13
Generated on Wed Nov 8 2023 11:06:18 for INFO505 Programmation C by
1.9.8