repo.or.cz
/
canaan.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
convert line ends
[canaan.git]
/
prj
/
cam
/
src
/
portal
/
mapper.h
blob
f360be106a13c09829d1c2126343d803d8414d66
1
/*
2
@Copyright Looking Glass Studios, Inc.
3
1996,1997,1998,1999,2000 Unpublished Work.
4
*/
5
6
#pragma once
7
#ifndef _MAPPER_H
8
#define _MAPPER_H
9
10
typedef
struct
point
{
11
fix x
,
y
;
12
int
code
;
13
fix i
;
14
}
my_goof
;
15
16
// portal clipping info
17
typedef
struct
{
18
int
l
,
t
,
r
,
b
;
19
int
tl
,
tr
,
bl
,
br
;
20
}
ClipData
;
21
22
#endif