mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
19 lines
298 B
C
19 lines
298 B
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
|