18 lines
596 B
C
18 lines
596 B
C
/*----------------------------------------------------------
|
|
* HTBLA-Leonding
|
|
* ---------------------------------------------------------
|
|
* Exercise Number: n/a
|
|
* Title: Configuration Options
|
|
* Author: S. Schraml
|
|
* ----------------------------------------------------------
|
|
* Description:
|
|
* Global application configuration options
|
|
* ----------------------------------------------------------
|
|
*/
|
|
#ifndef ___CONFIGURATION_H
|
|
#define ___CONFIGURATION_H
|
|
|
|
/** The maximum size of the board dimension (used for columns and rows). */
|
|
#define MAX_BOARD_SIZE 26
|
|
|
|
#endif
|