This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
neofx-libzoom/zoom/types.h
neoraider f5c8fc72ca libzoom: Added gates to level loader;
zoom: Added gate to level; some Makefile.am changes
2007-06-12 17:19:01 +00:00

47 lines
828 B
C

#ifndef ZOOM_TYPES_H
#define ZOOM_TYPES_H
#include <neofx/types.h>
#define TRIANGLE_UNKNOWN 0
#define TRIANGLE_WALL 1
#define TRIANGLE_FLOOR 2
#define THING_UNKNOWN 0
#define THING_MEDIPAK25 1
#define THING_MEDIPAK50 2
#define THING_MEDIPAK100 3
#define GATE_UNKNOWN 0
#define GATE_SIDE 1
#define STATE_UNKNOWN 0
#define STATE_OPENED 1
#define STATE_CLOSED 2
#define STATE_OPENING 3
#define STATE_CLOSING 4
#pragma pack(push, 2)
typedef struct WALL {
//unsigned char type;
unsigned char visible;
union {
TRIANGLE triangle;
struct {
VERTEX vertices[3];
VECTOR normal;
};
};
VECTOR normals[3];
int texture;
TEXCOORDS texcoords[3];
} WALL;
typedef struct _THING {
unsigned char type;
unsigned char visible;
VERTEX pos;
} THING;
#pragma pack(pop)
#endif