view src/creep.h @ 20:51a0972fcf76

Move some tilemap/distance stuff out of creep.c and main.c into a separate source file
author Michael Pavone <pavone@retrodev.com>
date Sun, 12 Jan 2014 22:43:03 -0800
parents a9500e8bff93
children
line wrap: on
line source

#ifndef CREEP_H_
#define CREEP_H_

enum {
	CREEP_NORMAL = 0,
	NUM_SPECIES
} creep_species;

typedef struct {
	u16  index;
	u16  health;
	s16  targetx;
	s16  targety;
	u8   species;
	u8   direction;
} creep;

#define MAX_CREEPS 40
extern u16 cur_creeps;

u16 spawn_creep(u8 species, s16 x, s16 y);
void update_creeps(void);

#endif //CREEP_H_