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