blob: 1505073acb06a446f74dc96b833cfd33a011d320 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|