Mercurial > repos > genjam1
view src/creep.h @ 3:b4d360d2e66c
Update library paths in makefile
author | Mike Pavone <pavone@retrodev.com> |
---|---|
date | Sun, 12 Jan 2014 12:24:21 -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_