view src/creep.h @ 5:11fbaecc6c5e

copied the windows makefile straight from SGDK.
author William Morgan <bill@mrgn.org>
date Sun, 12 Jan 2014 13:43:51 -0800
parents 8f23be2db808
children 3ed112d64b1b
line wrap: on
line source

#ifndef CREEP_H_
#define CREEP_H_

enum {
	CREEP_NORMAL = 0
} creep_species;

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

#endif //CREEP_H_