Mercurial > public > maze-solver
annotate algo.h @ 7:a9dd80a69887
add images
author | Dennis <denniscmartin@protonmail.com> |
---|---|
date | Sun, 16 Oct 2022 17:17:15 +0200 |
parents | 64d0988b0911 |
children |
rev | line source |
---|---|
1
edee16cfda92
algo working but inefficient
Dennis <denniscmartin@protonmail.com>
parents:
diff
changeset
|
1 // |
edee16cfda92
algo working but inefficient
Dennis <denniscmartin@protonmail.com>
parents:
diff
changeset
|
2 // Created by Dennis Concepción Martín on 15/10/22. |
edee16cfda92
algo working but inefficient
Dennis <denniscmartin@protonmail.com>
parents:
diff
changeset
|
3 // |
edee16cfda92
algo working but inefficient
Dennis <denniscmartin@protonmail.com>
parents:
diff
changeset
|
4 |
edee16cfda92
algo working but inefficient
Dennis <denniscmartin@protonmail.com>
parents:
diff
changeset
|
5 #ifndef MAZE_SOLVER_ALGO_H |
edee16cfda92
algo working but inefficient
Dennis <denniscmartin@protonmail.com>
parents:
diff
changeset
|
6 #define MAZE_SOLVER_ALGO_H |
edee16cfda92
algo working but inefficient
Dennis <denniscmartin@protonmail.com>
parents:
diff
changeset
|
7 |
edee16cfda92
algo working but inefficient
Dennis <denniscmartin@protonmail.com>
parents:
diff
changeset
|
8 #include <png.h> |
2 | 9 #include <time.h> |
1
edee16cfda92
algo working but inefficient
Dennis <denniscmartin@protonmail.com>
parents:
diff
changeset
|
10 #include <stdio.h> |
edee16cfda92
algo working but inefficient
Dennis <denniscmartin@protonmail.com>
parents:
diff
changeset
|
11 #include <stdlib.h> |
edee16cfda92
algo working but inefficient
Dennis <denniscmartin@protonmail.com>
parents:
diff
changeset
|
12 |
edee16cfda92
algo working but inefficient
Dennis <denniscmartin@protonmail.com>
parents:
diff
changeset
|
13 void wallFollower(png_bytep* pRows, unsigned int width); |
edee16cfda92
algo working but inefficient
Dennis <denniscmartin@protonmail.com>
parents:
diff
changeset
|
14 |
edee16cfda92
algo working but inefficient
Dennis <denniscmartin@protonmail.com>
parents:
diff
changeset
|
15 #endif //MAZE_SOLVER_ALGO_H |