INFO505 Programmation C
Loading...
Searching...
No Matches
TP3
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. */
12
typedef
char
Grille[ HAUTEUR ][ LARGEUR ];
13
typedef
struct
SPiece
{
14
}
Piece
;
15
/* ... */
16
17
/* Fonctions. */
18
extern
void
genererPieces(
Piece
tabPiece[ NB_PIECES ] );
19
extern
void
affichePieces(
Piece
p );
20
extern
char
lireCase( Grille G,
int
ligne,
int
colonne );
21
/* ... */
22
23
#endif
/* ifndef _TETRIS_H_ */
SPiece
Definition
tetris-1.h:13
Generated on Wed Nov 8 2023 11:06:18 for INFO505 Programmation C by
1.9.8