mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
14 lines
143 B
R
14 lines
143 B
R
|
@interface foo
|
||
|
{
|
||
|
unsigned count;
|
||
|
id []_objs;
|
||
|
}
|
||
|
@end
|
||
|
|
||
|
@implementation foo
|
||
|
- (void) foofoo: (id) anObject
|
||
|
{
|
||
|
_objs[count++] = anObject;
|
||
|
}
|
||
|
@end
|