mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 16:37:30 +00:00
032f16d1b3
Not enough, but covers Object->NSObject and header file protection.
27 lines
357 B
Objective-C
27 lines
357 B
Objective-C
#ifndef Clipper_h
|
|
#define Clipper_h
|
|
|
|
extern id clipper_i;
|
|
|
|
@interface Clipper : NSObject
|
|
{
|
|
int num;
|
|
vec3_t pos[3];
|
|
plane_t plane;
|
|
}
|
|
|
|
- (BOOL)hide;
|
|
- XYClick: (NSPoint)pt;
|
|
- (BOOL)XYDrag: (NSPoint *)pt;
|
|
- ZClick: (NSPoint)pt;
|
|
- carve;
|
|
- flipNormal;
|
|
- (BOOL)getFace: (face_t *)pl;
|
|
|
|
- cameraDrawSelf;
|
|
- XYDrawSelf;
|
|
- ZDrawSelf;
|
|
|
|
@end
|
|
|
|
#endif//Clipper_h
|