aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities/flower.h
blob: 279c162ffc17657399a7593fd726204e659d90d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "game.h"
#include "entity.h"

#ifndef FLOWER_H
#define FLOWER_H

#define FLOWER_SCALE 3.0
#define FLOWER_WIDTH 32.0
#define FLOWER_HEIGHT 54.0

void initFlower(Entity* entity);
void updateFlower(Entity* entity, Game* game);

#endif