fix(typo): game_world_draw is no longer game_word_draw

This commit is contained in:
Sara 2023-11-22 13:15:29 +01:00 committed by Scott-G-GD
parent 9e643e7cec
commit cd2de223fc

View file

@ -73,7 +73,7 @@ void game_world_update() {
_internal_clear_removed();
}
void game_word_draw() {
void game_world_draw() {
list_foreach(BehaviourEntity*, entity, &_game_entities) {
entity->tc->draw(entity->data);
}