Overworld render test.

This commit is contained in:
2025-09-11 23:33:24 -05:00
parent b4d94c2cbe
commit 964a9f64f2
32 changed files with 249 additions and 1219 deletions

View File

@@ -6,8 +6,18 @@
*/
#include "rpg.h"
#include "rpg/entity/player.h"
#include "rpg/world/map.h"
map_t testMap;
void rpgInit() {
mapInit(&testMap);
entity_t *ent = mapEntityAdd(&testMap);
entityInit(ent, ENTITY_TYPE_PLAYER);
}
void rpgUpdate() {
mapUpdate(&testMap);
}