Source release of QuakeEd, the map editing application on NEXTSTEP for Quake.

This commit is contained in:
Travis Bradshaw
2012-01-31 15:51:12 -06:00
parent 6df9737f9c
commit e4cb063480
82 changed files with 28345 additions and 0 deletions

24
QuakeEd/Clipper.h Normal file
View File

@@ -0,0 +1,24 @@
extern id clipper_i;
@interface Clipper : Object
{
int num;
vec3_t pos[3];
plane_t plane;
}
- (BOOL)hide;
- XYClick: (NXPoint)pt;
- (BOOL)XYDrag: (NXPoint *)pt;
- ZClick: (NXPoint)pt;
- carve;
- flipNormal;
- (BOOL)getFace: (face_t *)pl;
- cameraDrawSelf;
- XYDrawSelf;
- ZDrawSelf;
@end