Rewrote alot of shtuff to trans the code to ncurses instead of using VT100 escape codes directly

This commit is contained in:
AnnaSnoeijs 2025-06-06 21:31:59 +02:00
parent 2e807ba279
commit a561d5b61c
2 changed files with 182 additions and 115 deletions

View file

@ -1,5 +1,5 @@
#!/usr/bin/make -f
FLAGS = -O3 -pedantic -Wall -Wextra -Werror
FLAGS = -O3 -pedantic -Wall -Wextra -Werror -lncursesw
AnnaConnect: connect4.c
cc $(FLAGS) -o connect4 connect4.c