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

typedef struct {
	int id;
	int hp;
	int blink;
	double x, y;
	double vsp, hsp;
	double imageIndex;
	int dir;
	int state, timer, counter;
} Dog;

void createDog(int x, int y);

#endif