view src/creep.h @ 4:d73f53857e5f

Add placeholder walls and goal
author Mike Pavone <pavone@retrodev.com>
date Sun, 12 Jan 2014 13:55:54 -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_