# HG changeset patch # User Mike Pavone # Date 1389557724 28800 # Node ID 99f5e303fca137df0656a6c278d90c224b2d517b # Parent 826a1cb3f873e886026e87ff12b25a2507f64bad Add header with creep struct definition diff -r 826a1cb3f873 -r 99f5e303fca1 creep.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/creep.h Sun Jan 12 12:15:24 2014 -0800 @@ -0,0 +1,15 @@ +#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_