aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities/medicalTrash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities/medicalTrash.h')
-rw-r--r--src/entities/medicalTrash.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/entities/medicalTrash.h b/src/entities/medicalTrash.h
new file mode 100644
index 0000000..92c5df8
--- /dev/null
+++ b/src/entities/medicalTrash.h
@@ -0,0 +1,14 @@
+#include "game.h"
+#include "entity.h"
+
+#ifndef MEDICAL_TRASH_H
+#define MEDICAL_TRASH_H
+
+#define MEDICAL_TRASH_SCALE 2.0
+#define MEDICAL_TRASH_WIDTH 200.0
+#define MEDICAL_TRASH_HEIGHT 132.0
+
+void initMedicalTrash(Entity* entity);
+void updateMedicalTrash(Entity* entity, Game* game);
+
+#endif