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

//#include "../collision.h"

typedef struct {
	int id;
	double x, y;
	double vsp, grav;
	double imageIndex;
	int type, state, timer, dir;
	int hp, blink;
	int delay;
} Thwomp;

void createThwomp(int x, int y, int type, int offset, int delay, int dir);

#endif