Initial commit

This commit is contained in:
github-classroom[bot] 2025-01-14 11:07:40 +00:00 committed by GitHub
commit 87dcb960bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
67 changed files with 6733 additions and 0 deletions

23
config.h Normal file
View file

@ -0,0 +1,23 @@
/*----------------------------------------------------------
* 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