quakeforge/ruamoko/qwaq/debugger/views/indexview.h
Bill Currie 0a60f46a64 [qwaq] Implement more debugger def views
Structs and arrays now work (though could be better, eg collapsible).
2021-09-25 01:42:36 +09:00

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