Basic NPC loading (half done)

This commit is contained in:
2025-06-13 17:07:28 -05:00
parent 49989e0272
commit 9288c01887
25 changed files with 644 additions and 26 deletions

View File

@ -7,6 +7,7 @@
#pragma once
#include "duskraylib.h"
#include "entity/entity.h"
/**
* Initializes the overworld drawing system.
@ -16,4 +17,11 @@ void drawOverworldInit(void);
/**
* Renders the overworld, including map and characters.
*/
void drawOverworldDraw(void);
void drawOverworldDraw(void);
/**
* Renders a specific entity in the overworld.
*
* @param entity The entity to render.
*/
void drawOverworldDrawEntity(const entity_t *entity);