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

typedef struct {
	int id;
	int hp;
	double x, y;
	double xrecord[144];
	double yrecord[144];
	int state, timer, counter;
	int targx, targy;
	int invincible;
	double dir;
	double imageIndex;
} Gyra;

void createGyra(int x, int y);

#endif