mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 16:37:30 +00:00
0da92e33f6
This is much nicer (even though things aren't quite right yet)
11 lines
308 B
Objective-C
11 lines
308 B
Objective-C
#ifndef __qwaq_debugger_basicview_h
|
|
#define __qwaq_debugger_basicview_h
|
|
|
|
#include "debugger/defview.h"
|
|
|
|
@interface BasicView : DefView
|
|
// might return a NameView (which is also a DefView)
|
|
+(DefView *)withType:(qfot_type_t *)type at:(unsigned)offset in:(void *)data;
|
|
@end
|
|
|
|
#endif//__qwaq_debugger_basicview_h
|