#import #import @interface Animal : NSObject { @protected int age; int loc; int worldSize; } - (id) initWithLocation:(int)l andWorldSize:(int)sz; - (int) location; - (void) exist; - (NSString *)draw; @end