diff options
author | neoraider <devnull@localhost> | 2005-04-23 13:41:04 +0200 |
---|---|---|
committer | neoraider <devnull@localhost> | 2005-04-23 13:41:04 +0200 |
commit | f5ef6536cc243acd39bf563c3d9064d1908483b3 (patch) | |
tree | eca609ad0edf5759d5ae7c1e61959fcbe150c76d | |
parent | 89d74fbf79d6937f2245f3d6f521cc9ec5f58cbc (diff) | |
download | libneofx-f5ef6536cc243acd39bf563c3d9064d1908483b3.tar libneofx-f5ef6536cc243acd39bf563c3d9064d1908483b3.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
-rw-r--r-- | neofx/types.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/neofx/types.h b/neofx/types.h index 130f0f1..add2c88 100644 --- a/neofx/types.h +++ b/neofx/types.h @@ -16,12 +16,8 @@ typedef struct _TEXCOORDS { } TEXCOORDS;
typedef struct _TRIANGLE {
- unsigned char type;
- unsigned char visible;
VERTEX vertices[3];
VECTOR normal;
- int texture;
- TEXCOORDS texcoords[3];
} TRIANGLE;
#pragma pack(pop)
|