19 lines
623 B
C
19 lines
623 B
C
/*----------------------------------------------------------
|
|
* HTBLA-Leonding / Class: <your class>
|
|
* ---------------------------------------------------------
|
|
* Exercise Number: B1
|
|
* Title: Mine Sweeper Cell implementation
|
|
* Author: */<your name>/*
|
|
* ----------------------------------------------------------
|
|
* 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 */
|