convert line ends
[canaan.git] / prj / cam / src / portal / mapper.h
blobf360be106a13c09829d1c2126343d803d8414d66
1 /*
2 @Copyright Looking Glass Studios, Inc.
3 1996,1997,1998,1999,2000 Unpublished Work.
4 */
6 #pragma once
7 #ifndef _MAPPER_H
8 #define _MAPPER_H
10 typedef struct point {
11 fix x,y;
12 int code;
13 fix i;
14 } my_goof;
16 // portal clipping info
17 typedef struct {
18 int l,t,r,b;
19 int tl,tr,bl,br;
20 } ClipData;
22 #endif