mirror of
https://github.com/ZDoom/zdbsp.git
synced 2024-11-10 06:31:35 +00:00
f824fe7a86
SVN r2393 (trunk)
29 lines
349 B
C
29 lines
349 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__
|