mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 21:50:05 +00:00
71c05bd899
This one compiles to progs even :) (though it looks broken).
13 lines
142 B
R
13 lines
142 B
R
@interface foo
|
|
{
|
|
unsigned count;
|
|
id *_objs;
|
|
}
|
|
@end
|
|
|
|
@implementation foo
|
|
- (void) foofoo: (id) anObject
|
|
{
|
|
_objs[count++] = anObject;
|
|
}
|
|
@end
|