mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
4057500acc
Currently shows only the axes (along with dev "path" and name), but it has done a good job of pushing dev of other bits of code :)
13 lines
247 B
Objective-C
13 lines
247 B
Objective-C
#ifndef __qwaq_debugger_nameview_h
|
|
#define __qwaq_debugger_nameview_h
|
|
|
|
#include "ruamoko/qwaq/debugger/views/defview.h"
|
|
|
|
@interface NameView : View
|
|
{
|
|
string name;
|
|
}
|
|
+(NameView *)withName:(string)name;
|
|
@end
|
|
|
|
#endif//__qwaq_debugger_nameview_h
|