APLOC2/Week1/APLOC2 Week 1/APLOC2 Week 1/insectFactory.h
2013-02-12 20:25:31 -05:00

20 lines
375 B
Objective-C

//
// insectFactory.h
// APLOC2 Week 1
//
// Created by Brent Marohnic on 2/11/13.
// Copyright (c) 2013 Brent Marohnic. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "baseInsect.h"
#import "cricketInsect.h"
#import "butterflyInsect.h"
#import "antInsect.h"
@interface insectFactory : NSObject
+(baseInsect *)createNewInsect:(int)insectType;
@end