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

#ifndef FLOWER_H
#define FLOWER_H

#define FLOWER_WIDTH 32.0
#define FLOWER_HEIGHT 54.0

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

#endif