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

typedef struct {
	int id;
	double x, y;
	int ystart;
	double spd;
	double angle;
	int state;
	double imageIndex;
} Jellyfish;

void createJellyfish(int x, int y);

#endif