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

typedef struct {
	int id, state, timer;
	double x, y;
	double yoffset;
	int rot;
	double dir;
	double imageIndex;
} Skull;

void createSkull(int x, int y);

#endif