blob: b5c03fbfe97b0ae48ba474ba49c3ba9f6f9ce27e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//
// FallingObjectDelegate.h
// Cart Collect
//
// Created by Starla Insigna on 8/10/11.
// Copyright 2011 Four Island. All rights reserved.
//
#import <Foundation/Foundation.h>
@class FallingObject;
@protocol FallingObjectDelegate <NSObject>
@optional
- (void)didCatchItem:(FallingObject*)item;
- (void)didMissItem:(FallingObject*)item;
- (void)didDestroyItem:(FallingObject*)item;
@end
|