Rev 1449 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1449 | Rev 1653 | ||
|---|---|---|---|
| Line 33... | Line 33... | ||
| 33 | * SUCH DAMAGE. |
33 | * SUCH DAMAGE. |
| 34 | * |
34 | * |
| 35 | * @(#)tetris.h 8.1 (Berkeley) 5/31/93 |
35 | * @(#)tetris.h 8.1 (Berkeley) 5/31/93 |
| 36 | */ |
36 | */ |
| 37 | 37 | ||
| - | 38 | /** @addtogroup tetris |
|
| - | 39 | * @{ |
|
| - | 40 | */ |
|
| - | 41 | /** @file |
|
| - | 42 | */ |
|
| - | 43 | ||
| 38 | /* |
44 | /* |
| 39 | * Definitions for Tetris. |
45 | * Definitions for Tetris. |
| 40 | */ |
46 | */ |
| 41 | 47 | ||
| 42 | /* |
48 | /* |
| Line 174... | Line 180... | ||
| 174 | extern int classic; |
180 | extern int classic; |
| 175 | 181 | ||
| 176 | int fits_in(const struct shape *, int); |
182 | int fits_in(const struct shape *, int); |
| 177 | void place(const struct shape *, int, int); |
183 | void place(const struct shape *, int, int); |
| 178 | void stop(char *); |
184 | void stop(char *); |
| - | 185 | ||
| - | 186 | /** @} |
|
| - | 187 | */ |
|
| - | 188 | ||