comparison 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
comparison
equal deleted inserted replaced
0:826a1cb3f873 1:99f5e303fca1
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_