blob: 8c370197489f1668fea1f0af4e2a8c32efd89d4d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// CartDelegate.h
// Cartographic
//
// Created by Starla Insigna on 8/27/11.
// Copyright 2011 Four Island. All rights reserved.
//
#import <Foundation/Foundation.h>
@class Cart;
@protocol CartDelegate <NSObject>
@optional
- (int)cartShouldFall:(Cart*)cart;
- (BOOL)cartIsObstructed:(Cart*)cart;
@end
|