INFO505 Programmation C
Loading...
Searching...
No Matches
gtktetris-1.c
1// gtktetris.c
2#include <stdlib.h>
3#include <math.h>
4#include <gtk/gtk.h>
5#include "tetris.h"
6
7int 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}