23 lines
741 B
C
23 lines
741 B
C
/*----------------------------------------------------------
|
|
* HTBLA-Leonding
|
|
* ---------------------------------------------------------
|
|
* Exercise Number: n/a
|
|
* Title: Configuration Options
|
|
* Author: S. Schraml
|
|
* Date: n/a
|
|
* ----------------------------------------------------------
|
|
* Description:
|
|
* Global application configuration options
|
|
* ----------------------------------------------------------
|
|
*/
|
|
#ifndef ___CONFIGURATION_H
|
|
#define ___CONFIGURATION_H
|
|
|
|
/** Configures the maximum number of supported disks */
|
|
#define MAX_DISKS 64
|
|
/** Configures to visual left offset of the board (in characters) */
|
|
#define VIS_BOARD_OFFSET 12
|
|
/** Configures the delay per move in 0.1 seconds */
|
|
#define MOVE_DELAY 4
|
|
|
|
#endif
|