npc and bandit dressup, bits of UI added, WIP NPC interaction

This commit is contained in:
2025-10-06 23:08:15 +01:00
parent f18d9d2b0e
commit 7f77d7ad52
13 changed files with 166 additions and 58 deletions

View File

@@ -46,10 +46,15 @@ struct NPC {
U32 targetNavNode;
// How long the npc has been walking to the next index
F32 walkTimer;
// Space within you can interact with the NPC.
F32 interationRadius;
//// Knowledge
// What the NPC knows about the bandit.
NPC_LOOK banditKnowledge;
// NPC clothes
G_Outfit outfit;
// if the NPC has given info
bool infoGiven;
};
function void NPCDraw(D_Context *draw, NPC *npc);
#endif // LD_GAME_NPC_H_