12-tower-of-hanoi/config.h
github-classroom[bot] 87dcb960bf
Initial commit
2025-01-14 11:07:40 +00:00

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