aboutsummaryrefslogtreecommitdiff
path: root/src/enemies/batboss.h
blob: efac96343258b7487221439be13f2b27d1745442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef BATBOSS_H
#define BATBOSS_H

typedef struct {
	int id;
	double x, y;
	double hsp, vsp, grav;
	double imageIndex;
	double ypos;
	double rot;
	int hp;
	int state, timer, mode;
	int invincible;
} Batboss;

void createBatboss(int x, int y);

#endif