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)
13 lines
285 B
Objective-C
13 lines
285 B
Objective-C
#ifndef __qwaq_debugger_vectorview_h
|
|
#define __qwaq_debugger_vectorview_h
|
|
|
|
#include "debugger/defview.h"
|
|
|
|
@interface VectorView : DefView
|
|
{
|
|
vector *data;
|
|
}
|
|
+(VectorView *)withType:(qfot_type_t *)type at:(unsigned)offset in:(void *)data;
|
|
@end
|
|
|
|
#endif//__qwaq_debugger_vectorview_h
|