changeset 1:99f5e303fca1

Add header with creep struct definition
author Mike Pavone <pavone@retrodev.com>
date Sun, 12 Jan 2014 12:15:24 -0800
parents 826a1cb3f873
children 8f23be2db808
files creep.h
diffstat 1 files changed, 15 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /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_