19 lines
602 B
C
19 lines
602 B
C
/*----------------------------------------------------------
|
|
* HTBLA-Leonding / Class: 2IHIF
|
|
* ---------------------------------------------------------
|
|
* Exercise Number: B1
|
|
* Title: Mine Sweeper Board implementation
|
|
* Author: Marc Tismonar
|
|
* ----------------------------------------------------------
|
|
* Description:
|
|
* Implementation of ms_board.h.
|
|
* ----------------------------------------------------------
|
|
*/
|
|
|
|
#include "ms_board.h"
|
|
|
|
#include "config.h"
|
|
|
|
/** Implementation of Mine Sweeper board data */
|
|
|
|
/** The private singleton instance of the board data. */
|