Deliver cake to NPCs

This commit is contained in:
2024-02-29 12:08:50 -08:00
parent 60e1a4ed43
commit 1a89e4f3b6
10 changed files with 131 additions and 9 deletions

View File

@ -5,6 +5,7 @@ cc_library(
name = "game",
srcs = glob(["*.c"]) + [
"art/game_collectibles.c",
"art/game_hud.c",
"art/game_npcs.c",
"art/game_player.c",
"art/game_tiles.c",
@ -17,6 +18,7 @@ cc_library(
)
add_sprites(name="game_collectibles", n=24)
add_sprites(name="game_hud", n=2)
add_sprites(name="game_player", n=96)
add_sprites(name="game_npcs", n=64)
add_sprites(name="game_tiles", n=120)