summary refs log tree commit diff stats
path: root/Classes/FallingObjectFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/FallingObjectFactory.h')
-rw-r--r--Classes/FallingObjectFactory.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/Classes/FallingObjectFactory.h b/Classes/FallingObjectFactory.h new file mode 100644 index 0000000..a861d06 --- /dev/null +++ b/Classes/FallingObjectFactory.h
@@ -0,0 +1,20 @@
1//
2// FallingObjectFactory.h
3// Cartographic
4//
5// Created by Starla Insigna on 9/10/11.
6// Copyright (c) 2011 Four Island. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import "FallingObject.h"
11
12@interface FallingObjectFactory : NSObject {
13 NSMutableDictionary* recipes;
14}
15
16- (id)init;
17- (void)createRecipeWithIdentifier:(int)identifier spriteFilename:(NSString*)filename weight:(int)weight;
18- (FallingObject*)buildFallingObjectWithRecipeIdentifier:(int)identifier;
19
20@end