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

typedef struct {
	int id;
	double x, y;
	double imageIndex;
	int hp;
	int dir;
	int state;
	int blink;
} Golem;

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

#endif