blob: 70ac282fc9815f72ee1efdc35ae7164afcb3cdaf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "game.h"
#include "entity.h"
#ifndef BUSH_H
#define BUSH_H
#define BUSH_WIDTH 87.0
#define BUSH_HEIGHT 62.0
void initBush(Entity* entity);
void updateBush(Entity* entity, Game* game);
#endif
|