mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
24 lines
172 B
R
24 lines
172 B
R
|
@interface foo
|
||
|
-init;
|
||
|
@end
|
||
|
|
||
|
@implementation foo
|
||
|
-init
|
||
|
{
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
@protocol baz
|
||
|
-blah;
|
||
|
@end
|
||
|
|
||
|
@interface bar
|
||
|
-init;
|
||
|
@end
|
||
|
|
||
|
@implementation bar
|
||
|
-init
|
||
|
{
|
||
|
return self;
|
||
|
}
|