#import #import "abstract_agent.h" @interface Plant : AbstractAgent { @protected int age; int growthRate; NSString *lifecycle; } - (id) initWithPosition:(int)p andGrowthRate:(int)gr andLifecycle:(NSString *)s; - (BOOL) alive; @end