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

typedef struct {
	int id;
	double x, y;
	int ystart;	
	int hp;
	int blink;	
	int rot;
	double yoffset;	
	double vsp, grav;
	double jumpheight;
	double imageIndex;
	int timer, state;
} Podoboo;

void createPodoboo(int x, int y, int offset, int height);

#endif