aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-03-10 19:02:43 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-03-10 19:02:43 +0300
commit90f365e0ff8cff6bc426d08a04a0ede63379fc3b (patch)
tree64dc14b246298ed2f646b38adc249e9f959a2cd1
parente83fbd86c57f2b4ed9e5f7816b74de84b14f7dfa (diff)
Add a TODO list in main.c
-rw-r--r--main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/main.c b/main.c
index ee317c4..111c898 100644
--- a/main.c
+++ b/main.c
@@ -5,6 +5,11 @@
#include "map.h"
#include "structs.h"
+// So, TODO for now:
+// - Implement a stack
+// - Implement a maze algorithm to test my A* algorithm with
+// - Implement the A* algorithm
+
void sigint_handler(int sig) {
(void)sig; // We know it's a SIGINT
endwin();