19 lines
614 B
C
19 lines
614 B
C
/*----------------------------------------------------------
|
|
* HTBLA-Leonding / Class: 2IHIF
|
|
* ---------------------------------------------------------
|
|
* Exercise Number: B1
|
|
* Title: Mine Sweeper Cell implementation
|
|
* Author: Marc Tismonar
|
|
* ----------------------------------------------------------
|
|
* Description:
|
|
* Implementation of ms_cell.h.
|
|
* ----------------------------------------------------------
|
|
*/
|
|
|
|
#define CELL_COUNT MAX_BOARD_SIZE * MAX_BOARD_SIZE
|
|
|
|
/** Implementation of cell data */
|
|
|
|
/** Maximum amount of cell instances */
|
|
|
|
/** The number of produced cells */
|