mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
18 lines
186 B
R
18 lines
186 B
R
Class x = NIL;
|
|
|
|
struct Size {
|
|
integer x;
|
|
integer y;
|
|
};
|
|
typedef struct Size Size;
|
|
|
|
@interface foo
|
|
-(Size) bar;
|
|
@end
|
|
@implementation foo
|
|
-(Size) bar
|
|
{
|
|
local Size s;
|
|
return NIL;
|
|
}
|
|
@end
|