summaryrefslogtreecommitdiffstats
path: root/zoom/level.h
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2005-04-23 13:41:04 +0200
committerneoraider <devnull@localhost>2005-04-23 13:41:04 +0200
commit05f9b1d15c237e89176cc2b207454f0f30073d57 (patch)
treeccd3aa17254bca7670da5a2ab2f7202f230d3de4 /zoom/level.h
parentd836a9eb311efe71faf5c67425b25496333ab1b8 (diff)
downloadlibzoom-05f9b1d15c237e89176cc2b207454f0f30073d57.tar
libzoom-05f9b1d15c237e89176cc2b207454f0f30073d57.zip
libneofx: neofx/types.h: TRIANGLE-Struktur aufger?umt;
libzoom: zoom/types.h: WALL-Struktur als Ersatz f?r TRIANGLE eingef?gt; zoom/level.h, level.c und player.c an die neuen Strukturen angepasst
Diffstat (limited to 'zoom/level.h')
-rw-r--r--zoom/level.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/zoom/level.h b/zoom/level.h
index 223afe1..c9f5345 100644
--- a/zoom/level.h
+++ b/zoom/level.h
@@ -12,7 +12,7 @@ typedef struct _LEVELHEADER {
} LEVELHEADER;
typedef struct _ROOMHEADER {
- int nTriangles;
+ int nWalls;
int nObjects;
int nGates;
} ROOMHEADER;
@@ -23,10 +23,10 @@ typedef struct _GATEINFO {
} GATEINFO;
typedef struct _ROOM {
- int nTriangles;
+ int nWalls;
int nObjects;
int nGates;
- TRIANGLE *triangles;
+ WALL *walls;
OBJECT *objects;
GATE *gates;
GATEINFO *gateinfo;