home *** CD-ROM | disk | FTP | other *** search
/ Superpower (Alt) / SUPERPOWER.iso / q / source / qedefs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-08  |  1.2 KB  |  57 lines

  1.  
  2. #import <appkit/appkit.h>
  3. #import <ctype.h>
  4. #import <sys/types.h>
  5. #import <sys/dir.h>
  6.  
  7. #import "UserPath.h"
  8. #import "cmdlib.h"
  9. #import "mathlib.h"
  10.  
  11. #import "EntityClass.h"
  12. #import    "Project.h"
  13. #import "QuakeEd.h"
  14. #import "Map.h"
  15. #import "TexturePalette.h"
  16. #import "SetBrush.h"
  17. #import "render.h"
  18. #import "Entity.h"
  19.  
  20. #import "XYView.h"
  21. #import "CameraView.h"
  22. #import "ZView.h"
  23. #import "ZScrollView.h"
  24. #import    "Preferences.h"
  25. #import    "InspectorControl.h"
  26. #import "PopScrollView.h"
  27. #import "Dict.h"
  28. #import "DictList.h"
  29. #import "KeypairView.h"
  30. #import "Things.h"
  31. #import "TextureView.h"
  32. #import "Clipper.h"
  33.  
  34.  
  35. void PrintRect (NXRect *r);
  36. int    FileTime (char *path);
  37. void Sys_UpdateFile (char *path, char *netpath);
  38. void CleanupName (char *in, char *out);
  39.  
  40. extern    BOOL    in_error;
  41. void Error (char *error, ...);
  42.  
  43. #define    MAXTOKEN    128
  44. extern    char    token[MAXTOKEN];
  45. extern    int        scriptline;
  46. void    StartTokenParsing (char *data);
  47. boolean GetToken (boolean crossline);    // returns false at eof
  48. void UngetToken ();
  49.  
  50.  
  51. #define    FN_CMDOUT        "/tmp/QuakeEdCmd.txt"
  52. #define    FN_TEMPSAVE        "/qcache/temp.map"
  53. #define    FN_AUTOSAVE        "/qcache/AutoSaveMap.map"
  54. #define    FN_CRASHSAVE    "/qcache/ErrorSaveMap.map"
  55. #define    FN_DEVLOG        "/qcache/devlog"
  56.  
  57.