Ronja Awe
2 years ago
3 changed files with 16 additions and 14 deletions
@ -1,11 +1,13 @@ |
|||
#ifndef LABYRINTH_H |
|||
#define LABYRINTH_H |
|||
|
|||
#include <stdbool.h> |
|||
|
|||
#define MAXZEILEN 5 |
|||
#define MAXSPALTEN 5 |
|||
|
|||
typedef char lab[MAXZEILEN][MAXSPALTEN]; |
|||
int printlabyrinth(lab laby, int hoehe, int breite); |
|||
int wegsuchen(lab laby, int y, int x, int ziely, int zielx); |
|||
void wegsuchen(lab laby, bool* done, int y, int x, int ziely, int zielx); |
|||
|
|||
#endif |
Write
Preview
Loading…
Cancel
Save
Reference in new issue