summaryrefslogtreecommitdiffstats
path: root/zoom/types.h
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2007-06-12 19:19:01 +0200
committerneoraider <devnull@localhost>2007-06-12 19:19:01 +0200
commitf5c8fc72ca1801a7771a75d652c58754b36db768 (patch)
treef8fcd8218e040274500115b6258544039697d325 /zoom/types.h
parenta4339f057080f9d8ea51dec8dfbc5a29ab586215 (diff)
downloadlibzoom-f5c8fc72ca1801a7771a75d652c58754b36db768.tar
libzoom-f5c8fc72ca1801a7771a75d652c58754b36db768.zip
libzoom: Added gates to level loader;
zoom: Added gate to level; some Makefile.am changes
Diffstat (limited to 'zoom/types.h')
-rw-r--r--zoom/types.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/zoom/types.h b/zoom/types.h
index 4c86190..3feb5a3 100644
--- a/zoom/types.h
+++ b/zoom/types.h
@@ -23,7 +23,7 @@
#pragma pack(push, 2)
typedef struct WALL {
- unsigned char type;
+ //unsigned char type;
unsigned char visible;
union {
TRIANGLE triangle;
@@ -42,15 +42,6 @@ typedef struct _THING {
unsigned char visible;
VERTEX pos;
} THING;
-
-typedef struct _GATE {
- unsigned char type;
- unsigned char open;
- WALL walls[2];
- VERTEX point;
- int room;
- int gate;
-} GATE;
#pragma pack(pop)
#endif