quakeforge/ruamoko/qwaq/ui/titlebar.h
Bill Currie 6ff5b5c101 [qwaq] Clean up the qwaq directory
Things were getting rather cluttered with everything being qwaq-* and
all in one directory. Now most have lost the qwaq- prefix and have been
moved into subdirectories (non-recursive make).
2020-03-30 02:34:08 +09:00

16 lines
289 B
Objective-C

#ifndef __qwaq_ui_titlebar_h
#define __qwaq_ui_titlebar_h
#include "ui/view.h"
@interface TitleBar : View
{
string title;
int length;
}
// title always centered at top of owner
-initWithTitle:(string) title;
-setTitle:(string) newTitle;
@end
#endif//__qwaq_ui_titlebar_h