mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
23 lines
172 B
R
23 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;
|
|
}
|