mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 00:40:55 +00:00
18 lines
347 B
R
18 lines
347 B
R
|
typedef struct { int x, y; } Point;
|
||
|
@interface TextContext
|
||
|
- (void) mvvprintf: (Point) pos, string mft, @va_list args;
|
||
|
@end
|
||
|
@interface View
|
||
|
{
|
||
|
TextContext *textContext;
|
||
|
}
|
||
|
- (void) mvprintf: (Point) pos, string mft, ...;
|
||
|
@end
|
||
|
|
||
|
@implementation View
|
||
|
- (void) mvprintf: (Point) pos, string fmt, ...
|
||
|
{
|
||
|
[textContext mvvprintf: pos, fmt, @args];
|
||
|
}
|
||
|
@end
|