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

typedef struct {
	int id;
	double x, y;
	double imageIndex;
	int hp;
	int blink;
	int dir;
	int hsp, vsp;
	int wallx, wally;
	int timer;
} Firewheel;

void createFirewheel(int x, int y, int dir);

#endif