blob: d88a5ced155607fe93963e5e7c582a8eb6567b8b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef debris_h
#define debris_h
#include "sprite.h"
struct World;
int new_debris(
struct World* world,
int x,
int y,
int vx,
int vy,
Sprite_ID sprite
);
#endif
|