From 80191b41352ad20493fb62e8f3683d69133d0d24 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 14 Feb 2013 18:03:09 -0500 Subject: Initial commit. --- (limited to 'src/layer.h') diff --git a/src/layer.h b/src/layer.h new file mode 100644 index 0000000..126c3d9 --- /dev/null +++ b/src/layer.h @@ -0,0 +1,20 @@ +#ifndef LAYER_H +#define LAYER_H + +#include + +const int LAYER_GROUND = 0; +const int LAYER_OBJ_LOW = 1; +const int LAYER_CHAR_BOT = 2; +const int LAYER_OBJ_MID = 3; +const int LAYER_CHAR_TOP = 4; +const int LAYER_OBJ_HIGH = 5; +const int LAYER_WEATHER = 6; + +struct layer { + char *name; + Uint32 *tiles; + struct layer *next; +}; + +#endif -- cgit v0.9.1