INFO505 Programmation C
Loading...
Searching...
No Matches
tetris-1.h
1// tetris.h
2#ifndef _TETRIS_H_
3#define _TETRIS_H_
4
5/* Constantes. */
6#define HAUTEUR 15
7#define LARGEUR 10
8#define NB_PIECES 3
9/* ... */
10
11/* Types. */
12typedef char Grille[ HAUTEUR ][ LARGEUR ];
13typedef struct SPiece {
14} Piece;
15/* ... */
16
17/* Fonctions. */
18extern void genererPieces( Piece tabPiece[ NB_PIECES ] );
19extern void affichePieces( Piece p );
20extern char lireCase( Grille G, int ligne, int colonne );
21/* ... */
22
23#endif /* ifndef _TETRIS_H_ */