feat: Added nav and start of npc stuff

This commit is contained in:
2025-10-04 21:08:52 +01:00
parent 7a27309c5b
commit d0d79d0551
7 changed files with 214 additions and 0 deletions

10
code/game/npc.h Normal file
View File

@@ -0,0 +1,10 @@
#if !defined(LD_GAME_NPC_H_)
#define LD_GAME_NPC_H_
#include "aabb.h"
typedef struct NPC NPC;
struct NPC {
AABB collision;
};
#endif // LD_GAME_NPC_H_