mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 16:37:30 +00:00
0a60f46a64
Structs and arrays now work (though could be better, eg collapsible).
13 lines
256 B
Objective-C
13 lines
256 B
Objective-C
#ifndef __qwaq_debugger_indexview_h
|
|
#define __qwaq_debugger_indexview_h
|
|
|
|
#include "ruamoko/qwaq/debugger/views/defview.h"
|
|
|
|
@interface IndexView : DefView
|
|
{
|
|
int index;
|
|
}
|
|
+(IndexView *)withIndex:(int)index;
|
|
@end
|
|
|
|
#endif//__qwaq_debugger_indexview_h
|