aboutsummaryrefslogtreecommitdiff
path: root/src/enemies/bee.h
blob: 1230f7185e81d0f9b3dcb6e20c12c1c1dca6a9ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef BEE_H
#define BEE_H

typedef struct {
	int id;
	double x, y;
	int xstart, ystart;
	double hsp, vsp;
	double imageIndex;
	int dir, state, timer;
	double hoverdir;
} Bee;

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

#endif