mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
15 lines
156 B
R
15 lines
156 B
R
|
void __obj_exec_class (obj_module_t *msg) = #0;
|
||
|
|
||
|
@interface Foo
|
||
|
-init;
|
||
|
@end
|
||
|
|
||
|
@interface Bar : Foo
|
||
|
@end
|
||
|
|
||
|
@implementation Bar
|
||
|
-init
|
||
|
{
|
||
|
return [super init];
|
||
|
}
|