comparison src/creep.h @ 2:8f23be2db808

Movec creep.h into the src folder. Added main loop
author Mike Pavone <pavone@retrodev.com>
date Sun, 12 Jan 2014 12:20:42 -0800
parents creep.h@99f5e303fca1
children 3ed112d64b1b
comparison
equal deleted inserted replaced
1:99f5e303fca1 2:8f23be2db808
1 #ifndef CREEP_H_
2 #define CREEP_H_
3
4 enum {
5 CREEP_NORMAL = 0
6 } creep_species;
7
8 typedef struct {
9 u16 index;
10 u16 health;
11 u8 species;
12 u8 direction;
13 } creep;
14
15 #endif //CREEP_H_