mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
18 lines
298 B
Objective-C
18 lines
298 B
Objective-C
#ifndef __ruamoko_gui_Text_h
|
|
#define __ruamoko_gui_Text_h
|
|
|
|
#include "View.h"
|
|
|
|
@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
|