view creep.h @ 1:99f5e303fca1

Add header with creep struct definition
author Mike Pavone <pavone@retrodev.com>
date Sun, 12 Jan 2014 12:15:24 -0800
parents
children
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_