dev: migrate combat system & basic build execution to Zig #4

Merged
NotAShelf merged 9 commits from notashelf/push-nrzuupynktom into main 2026-04-05 21:14:12 +00:00
Showing only changes of commit 0830aaa128 - Show all commits

meta: look for zig files only in libs/

The core game is, and will remain, C

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I568a9d71f55774e195eaa3a75eff80136a6a6964
raf 2026-04-05 22:24:38 +03:00
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -13,7 +13,7 @@ clean:
# Format all C source files
fmt:
clang-format -i src/*.c src/*.h
zig fmt **/*.zig
zig fmt libs/combat/*.zig
# Check formatting
fmt-check: