#include "trash.h" void initTrash(Entity* entity) { entity->box = entityBoxFromScale(TRASH_SCALE, TRASH_WIDTH, TRASH_HEIGHT); } void updateTrash(Entity* entity, Game* game) { DrawBillboard(game->player.camera, game->assets.textures[TRASH_TEXTURE], entity->position, TRASH_SCALE, WHITE); }