summary refs log tree commit diff stats
path: root/Classes/FallingObjectFactory.h
blob: a861d061e42fb121d46ec0b982ff1cdeea842b54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  FallingObjectFactory.h
//  Cartographic
//
//  Created by Starla Insigna on 9/10/11.
//  Copyright (c) 2011 Four Island. All rights reserved.
//

#import <Foundation/Foundation.h>
#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