#include "flower.h" void initFlower(Entity* entity) { entity->box = entityBoxFromScale(1.0, FLOWER_WIDTH, FLOWER_HEIGHT); } void updateFlower(Entity* entity, Game* game) { DrawBillboard(game->player.camera, game->assets.textures[FLOWER_TEXTURE], entity->position, 1.0, WHITE); }