mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
cdc1f0c5e7
Now that qfcc actually supports them properly.
23 lines
339 B
Objective-C
23 lines
339 B
Objective-C
#ifndef __ruamoko_gui_Text_h
|
|
#define __ruamoko_gui_Text_h
|
|
|
|
#include <gui/View.h>
|
|
|
|
/** \addtogroup gui */
|
|
///@{
|
|
|
|
@interface Text: View
|
|
{
|
|
@public
|
|
string text;
|
|
}
|
|
|
|
- (id) initWithBounds: (Rect)aRect;
|
|
- (id) initWithBounds: (Rect)aRect text:(string)str;
|
|
- (void) setText: (string)str;
|
|
- (void) draw;
|
|
@end
|
|
|
|
///@}
|
|
|
|
#endif //__ruamoko_gui_Text_h
|