diff options
Diffstat (limited to 'Classes/FallingObjectDelegate.h')
-rw-r--r-- | Classes/FallingObjectDelegate.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Classes/FallingObjectDelegate.h b/Classes/FallingObjectDelegate.h new file mode 100644 index 0000000..b5c03fb --- /dev/null +++ b/Classes/FallingObjectDelegate.h | |||
@@ -0,0 +1,20 @@ | |||
1 | // | ||
2 | // FallingObjectDelegate.h | ||
3 | // Cart Collect | ||
4 | // | ||
5 | // Created by Starla Insigna on 8/10/11. | ||
6 | // Copyright 2011 Four Island. All rights reserved. | ||
7 | // | ||
8 | |||
9 | #import <Foundation/Foundation.h> | ||
10 | |||
11 | @class FallingObject; | ||
12 | |||
13 | @protocol FallingObjectDelegate <NSObject> | ||
14 | |||
15 | @optional | ||
16 | - (void)didCatchItem:(FallingObject*)item; | ||
17 | - (void)didMissItem:(FallingObject*)item; | ||
18 | - (void)didDestroyItem:(FallingObject*)item; | ||
19 | |||
20 | @end | ||