diff options
Diffstat (limited to 'src/mob.h')
| -rw-r--r-- | src/mob.h | 10 |
1 files changed, 10 insertions, 0 deletions
| diff --git a/src/mob.h b/src/mob.h new file mode 100644 index 0000000..7a4b707 --- /dev/null +++ b/src/mob.h | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | typedef struct { | ||
| 2 | int x; | ||
| 3 | int y; | ||
| 4 | double x_vel; | ||
| 5 | double y_vel; | ||
| 6 | double x_accel; | ||
| 7 | double y_accel; | ||
| 8 | int w; | ||
| 9 | int h; | ||
| 10 | } mob_t; | ||
