mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
0d8815f274
The debugger displays the source file but doesn't highlight the current line yet.
35 lines
507 B
Objective-C
35 lines
507 B
Objective-C
#ifndef __qwaq_app_h
|
|
#define __qwaq_app_h
|
|
|
|
#include <Object.h>
|
|
|
|
#include "event.h"
|
|
#include "qwaq-rect.h"
|
|
|
|
@class Array;
|
|
@class Group;
|
|
@class TextContext;
|
|
@class View;
|
|
|
|
@interface QwaqApplication: Object
|
|
{
|
|
qwaq_event_t event;
|
|
qwaq_command endState;
|
|
|
|
Group *objects;
|
|
|
|
TextContext *screen;
|
|
Extent screenSize;
|
|
int autocount;
|
|
|
|
Array *debuggers;
|
|
}
|
|
-(Extent)size;
|
|
-(TextContext *)screen;
|
|
-addView:(View *)view;
|
|
-run;
|
|
@end
|
|
|
|
@extern QwaqApplication *application;
|
|
|
|
#endif//__qwaq_app_h
|