quakeforge/tools/Forge/Bundles/MapEdit/THING+NSArray.m
Bill Currie eba4402d8e Get map loading sort-of working.
Segfaults, but the Map class can now be instantiated.
2010-09-26 13:50:18 +09:00

35 lines
622 B
Objective-C

@implementation THING (NSArray)
- (NSUInteger) count
{
return [array count];
}
- (id) objectAtIndex: (NSUInteger)index
{
if (index >= [self count])
return 0;
return [array objectAtIndex: index];
}
- (void) addObject: (id)anObject
{
[array addObject: anObject];
}
- (void) insertObject: (id)anObject atIndex: (NSUInteger)index
{
[array insertObject: anObject atIndex: index];
}
- (void) removeObjectAtIndex: (NSUInteger)index
{
[array removeObjectAtIndex: index];
}
- (void) replaceObjectAtIndex: (NSUInteger)index withObject: (id)anObject
{
[array replaceObjectAtIndex: index withObject: anObject];
}
@end