Basic interaction

This commit is contained in:
2025-09-17 18:54:12 -05:00
parent 08221af3f8
commit a45a2a5bd7
5 changed files with 81 additions and 24 deletions

View File

@@ -100,4 +100,8 @@ void entityUpdate(entity_t *entity) {
entity->velocity[1] = 0.0f;
}
}
if(entity->type == ENTITY_TYPE_PLAYER) {
playerInteraction(entity);
}
}