summaryrefslogtreecommitdiffstats
path: root/src/layer.h
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-02-17 05:52:58 (EST)
committer P. J. McDermott <pjm@nac.net>2013-02-17 05:55:20 (EST)
commit3f5ba41ed0364268d5a6d10e4ab559b61393edf0 (patch)
treed0c346d1f7885ed65f6298096c88b9997b6949de /src/layer.h
parent5a63b4c2710732f73caed6fa9fa08fcf1ca7fd44 (diff)
downloadoverworld-rpg-3f5ba41ed0364268d5a6d10e4ab559b61393edf0.zip
overworld-rpg-3f5ba41ed0364268d5a6d10e4ab559b61393edf0.tar.gz
overworld-rpg-3f5ba41ed0364268d5a6d10e4ab559b61393edf0.tar.bz2
Delete old map-related files.
Diffstat (limited to 'src/layer.h')
-rw-r--r--src/layer.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/layer.h b/src/layer.h
deleted file mode 100644
index 85558a6..0000000
--- a/src/layer.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef LAYER_H
-#define LAYER_H
-
-#include <SDL_stdinc.h>
-
-#if 0
-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;
-#endif
-
-struct layer {
- char *name;
- Uint32 *tiles;
- struct layer *next;
-};
-
-#endif