#include "tree.h" void initTree(Entity* entity) { entity->box = entityBoxFromScale(1.0, TREE_WIDTH, TREE_HEIGHT); } void updateTree(Entity* entity, Game* game) { DrawBillboard(game->player.camera, game->assets.textures[TREE_TEXTURE], entity->position, 1.0, WHITE); }