// // FallingObjectFactory.h // Cartographic // // Created by Starla Insigna on 9/10/11. // Copyright (c) 2011 Four Island. All rights reserved. // #import #import "FallingObject.h" @interface FallingObjectFactory : NSObject { NSMutableDictionary* recipes; } - (id)init; - (void)createRecipeWithIdentifier:(int)identifier spriteFilename:(NSString*)filename weight:(int)weight; - (FallingObject*)buildFallingObjectWithRecipeIdentifier:(int)identifier; @end