0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-11 11:51:17 +00:00
quakeforge/ruamoko/include/gui/Text.h
Bill Currie cdc1f0c5e7 [libr] Treat ruamoko headers as system headers
Now that qfcc actually supports them properly.
2020-03-03 15:24:41 +09:00

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