feat: Random npc walkabouts

This commit is contained in:
2025-10-05 15:32:57 +01:00
parent 8f148b6894
commit 394366480b
3 changed files with 8 additions and 4 deletions

View File

@@ -4,6 +4,7 @@
#include "player.h"
#include "npc.h"
#include "bandit.h"
#include "../core/math.h"
// Areas are which
typedef U32 World_Area;
@@ -16,6 +17,7 @@ typedef struct World World;
struct World {
//// Static stuff
NavMesh *navMesh;
Random random;
//// Player
Player player;