aboutsummaryrefslogtreecommitdiff
path: root/physics.h
blob: 704499635ac8a69d558abb29e853ed1f2d221042 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef physics_h
#define physics_h

struct Map;
struct Rect;

void update_body(
	const struct Map* map,
	int* x,
	int* y,
	int* vx,
	int* vy,
	int* grounded,
	int* headbutted,
	int* on_ramp,
	const struct Rect* r
);

#endif