mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
Again, whitespace.
This commit is contained in:
parent
4d3cd613df
commit
8ffe20ee82
12 changed files with 23 additions and 12 deletions
|
@ -18,7 +18,8 @@ void CameraLineto (vec3_t p);
|
||||||
|
|
||||||
extern BOOL timedrawing;
|
extern BOOL timedrawing;
|
||||||
|
|
||||||
@interface CameraView:NSView {
|
@interface CameraView:NSView
|
||||||
|
{
|
||||||
float xa, ya, za;
|
float xa, ya, za;
|
||||||
float move;
|
float move;
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,8 @@
|
||||||
|
|
||||||
extern id clipper_i;
|
extern id clipper_i;
|
||||||
|
|
||||||
@interface Clipper:NSObject {
|
@interface Clipper:NSObject
|
||||||
|
{
|
||||||
int num;
|
int num;
|
||||||
vec3_t pos[3];
|
vec3_t pos[3];
|
||||||
plane_t plane;
|
plane_t plane;
|
||||||
|
|
|
@ -18,7 +18,8 @@ typedef enum {
|
||||||
|
|
||||||
extern id inspcontrol_i;
|
extern id inspcontrol_i;
|
||||||
|
|
||||||
@interface InspectorControl:NSObject {
|
@interface InspectorControl:NSObject
|
||||||
|
{
|
||||||
id inspectorView_i; // inspector view
|
id inspectorView_i; // inspector view
|
||||||
id inspectorSubview_i; // inspector view's current subview
|
id inspectorSubview_i; // inspector view's current subview
|
||||||
// (gets replaced)
|
// (gets replaced)
|
||||||
|
|
|
@ -9,7 +9,8 @@
|
||||||
|
|
||||||
extern id map_i;
|
extern id map_i;
|
||||||
|
|
||||||
@interface Map:NSMutableArray {
|
@interface Map:NSMutableArray
|
||||||
|
{
|
||||||
id currentEntity;
|
id currentEntity;
|
||||||
id oldselection; // temp when loading a new map
|
id oldselection; // temp when loading a new map
|
||||||
float minz, maxz;
|
float minz, maxz;
|
||||||
|
|
|
@ -3,7 +3,8 @@
|
||||||
|
|
||||||
#include <AppKit/AppKit.h>
|
#include <AppKit/AppKit.h>
|
||||||
|
|
||||||
@ interface PopScrollView:NSScrollView {
|
@interface PopScrollView:NSScrollView
|
||||||
|
{
|
||||||
id button1, button2;
|
id button1, button2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,8 @@ extern float lightaxis[3];
|
||||||
// these are personal preferences saved in NeXT defaults, not project
|
// these are personal preferences saved in NeXT defaults, not project
|
||||||
// parameters saved in the quake.qe_project file
|
// parameters saved in the quake.qe_project file
|
||||||
|
|
||||||
@interface Preferences:NSObject {
|
@interface Preferences:NSObject
|
||||||
|
{
|
||||||
id bspSound_i; // actual sound object
|
id bspSound_i; // actual sound object
|
||||||
|
|
||||||
// internal state
|
// internal state
|
||||||
|
|
|
@ -21,7 +21,8 @@
|
||||||
|
|
||||||
extern id project_i;
|
extern id project_i;
|
||||||
|
|
||||||
@interface Project:NSObject {
|
@interface Project:NSObject
|
||||||
|
{
|
||||||
id projectInfo; // dictionary storage of project info
|
id projectInfo; // dictionary storage of project info
|
||||||
|
|
||||||
id basepathinfo_i; // outlet to base path info textfield
|
id basepathinfo_i; // outlet to base path info textfield
|
||||||
|
|
|
@ -16,7 +16,8 @@ void NopSound (void);
|
||||||
|
|
||||||
void qprintf (char *fmt, ...); // prints text to cmd_out_i
|
void qprintf (char *fmt, ...); // prints text to cmd_out_i
|
||||||
|
|
||||||
@interface QuakeEd:NSWindow {
|
@interface QuakeEd:NSWindow
|
||||||
|
{
|
||||||
BOOL dirty;
|
BOOL dirty;
|
||||||
char filename[1024]; // full path with .map extension
|
char filename[1024]; // full path with .map extension
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,8 @@ winding_t *CopyWinding (winding_t * w);
|
||||||
winding_t *NewWinding (int points);
|
winding_t *NewWinding (int points);
|
||||||
|
|
||||||
|
|
||||||
@interface SetBrush:NSObject {
|
@interface SetBrush:NSObject
|
||||||
|
{
|
||||||
BOOL regioned; // not active
|
BOOL regioned; // not active
|
||||||
BOOL selected;
|
BOOL selected;
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,8 @@
|
||||||
|
|
||||||
#include <AppKit/AppKit.h>
|
#include <AppKit/AppKit.h>
|
||||||
|
|
||||||
@ interface Storage:NSObject {
|
@interface Storage:NSObject
|
||||||
|
{
|
||||||
@public void *dataPtr; /* data of the Storage object */
|
@public void *dataPtr; /* data of the Storage object */
|
||||||
const char *description; /* Element description */
|
const char *description; /* Element description */
|
||||||
NSUInteger numElements; /* Actual number of elements */
|
NSUInteger numElements; /* Actual number of elements */
|
||||||
|
|
|
@ -3,7 +3,8 @@
|
||||||
|
|
||||||
#include <AppKit/AppKit.h>
|
#include <AppKit/AppKit.h>
|
||||||
|
|
||||||
@ interface TextureView:NSView {
|
@interface TextureView:NSView
|
||||||
|
{
|
||||||
id parent_i;
|
id parent_i;
|
||||||
int deselectIndex;
|
int deselectIndex;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue