aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities/trash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities/trash.h')
-rw-r--r--src/entities/trash.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/entities/trash.h b/src/entities/trash.h
new file mode 100644
index 0000000..1505073
--- /dev/null
+++ b/src/entities/trash.h
@@ -0,0 +1,14 @@
+#include "game.h"
+#include "entity.h"
+
+#ifndef TRASH_H
+#define TRASH_H
+
+#define TRASH_SCALE 2.0
+#define TRASH_WIDTH 202.0
+#define TRASH_HEIGHT 122.0
+
+void initTrash(Entity* entity);
+void updateTrash(Entity* entity, Game* game);
+
+#endif