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

#ifndef BUSH_H
#define BUSH_H

#define BUSH_SCALE 3.0
#define BUSH_WIDTH 87.0
#define BUSH_HEIGHT 62.0

void initBush(Entity* entity);
void updateBush(Entity* entity, Game* game);

#endif