#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_