aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities/medicalTrash.h
blob: 92c5df89340ec5efe5e817eeeb6315dd56654b34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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