zdbsp/workdata.h
Randy Heit 24d4f0b45c Initial commit of zdbsp.
SVN r12 (trunk)
2006-02-24 05:17:19 +00:00

29 lines
No EOL
347 B
C

#ifndef __WORKDATA_H__
#define __WORKDATA_H__
#ifdef _MSC_VER
#pragma once
#endif
#include "zdbsp.h"
struct vertex_t
{
fixed_t x, y;
};
struct node_t
{
fixed_t x, y, dx, dy;
fixed_t bbox[2][4];
unsigned int intchildren[2];
};
struct subsector_t
{
DWORD numlines;
DWORD firstline;
};
#endif //__WORKDATA_H__