aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities/bush.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities/bush.h')
-rw-r--r--src/entities/bush.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/entities/bush.h b/src/entities/bush.h
new file mode 100644
index 0000000..70ac282
--- /dev/null
+++ b/src/entities/bush.h
@@ -0,0 +1,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