Game core prototype

Manged to get the moves and tile spawns. Double merge block to be implemented.
This commit is contained in:
2026-03-05 22:19:48 +01:00
commit fac6318f1f
2 changed files with 248 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
CC = gcc
CFLAGS = -Wall -Wextra -std=c11
LIBS = -lraylib -lm -lpthread -ldl
TARGET = main
SRC = main.c
all: $(TARGET)
$(TARGET): $(SRC)
$(CC) $(CFLAGS) $(SRC) -o $(TARGET) $(LIBS)
clean:
rm -f $(TARGET)
run: $(TARGET)
./$(TARGET)
.PHONY: all clean run