aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities/oldMint.c
blob: 17c751ef558bb0a2235ede7e495d03e9a5ac3db8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include "oldMint.h"

void initOldMint(Entity* entity)
{
  entity->box = entityBoxFromScale(1.0, OLD_MINT_WIDTH, OLD_MINT_HEIGHT);
}

void updateOldMint(Entity* entity, Game* game)
{
  DrawBillboard(game->player.camera, game->assets.textures[MINT_TEXTURE],
                  entity->position, 1.0, WHITE);
}