summary refs log tree commit diff stats
path: root/src/mob.h
blob: 7a4b707746c7a7c5d6bf9d2ad8d997560cd99fb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
typedef struct {
  int x;
  int y;
  double x_vel;
  double y_vel;
  double x_accel;
  double y_accel;
  int w;
  int h;
} mob_t;