diff options
Diffstat (limited to 'src/entities/oldMint.c')
| -rw-r--r-- | src/entities/oldMint.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/entities/oldMint.c b/src/entities/oldMint.c new file mode 100644 index 0000000..17c751e --- /dev/null +++ b/src/entities/oldMint.c @@ -0,0 +1,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); +} |
