mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 21:02:50 +00:00
0da92e33f6
This is much nicer (even though things aren't quite right yet)
13 lines
231 B
Objective-C
13 lines
231 B
Objective-C
#ifndef __qwaq_debugger_nameview_h
|
|
#define __qwaq_debugger_nameview_h
|
|
|
|
#include "debugger/defview.h"
|
|
|
|
@interface NameView : DefView
|
|
{
|
|
string name;
|
|
}
|
|
+(NameView *)withName:(string)name;
|
|
@end
|
|
|
|
#endif//__qwaq_debugger_nameview_h
|