mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
59 lines
1.2 KiB
Objective-C
59 lines
1.2 KiB
Objective-C
|
|
#import <AppKit/AppKit.h>
|
|
#import <ctype.h>
|
|
#import <sys/types.h>
|
|
#import <sys/dir.h>
|
|
#import <sys/time.h>
|
|
#import <unistd.h>
|
|
|
|
#import "UserPath.h"
|
|
#import "cmdlib.h"
|
|
#import "mathlib.h"
|
|
|
|
#import "EntityArray.h"
|
|
#import "EntityClass.h"
|
|
#import "Project.h"
|
|
#import "Forge.h"
|
|
#import "Map.h"
|
|
#import "TexturePalette.h"
|
|
#import "SetBrush.h"
|
|
#import "render.h"
|
|
#import "Entity.h"
|
|
|
|
#import "XYView.h"
|
|
#import "CameraView.h"
|
|
#import "ZView.h"
|
|
#import "ZScrollView.h"
|
|
#import "Preferences.h"
|
|
#import "InspectorControl.h"
|
|
#import "PopScrollView.h"
|
|
#import "KeypairView.h"
|
|
#import "Things.h"
|
|
#import "TextureView.h"
|
|
#import "Clipper.h"
|
|
|
|
|
|
void PrintRect (NSRect *r);
|
|
int FileTime (char *path);
|
|
void Sys_UpdateFile (char *path, char *netpath);
|
|
void CleanupName (char *in, char *out);
|
|
|
|
extern BOOL in_error;
|
|
void Error (char *error, ...);
|
|
|
|
#define MAXTOKEN 128
|
|
extern char token[MAXTOKEN];
|
|
extern int scriptline;
|
|
void StartTokenParsing (char *data);
|
|
qboolean GetToken (qboolean crossline); // returns false at eof
|
|
void UngetToken ();
|
|
|
|
|
|
extern NSString *commandOutput;
|
|
extern NSString *developerLogFile;
|
|
|
|
extern NSString *tempSaveFile;
|
|
extern NSString *autoSaveFile;
|
|
extern NSString *errorSaveFile;
|
|
|
|
extern char *debugname;
|