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