summary refs log tree commit diff stats
path: root/Classes/CartDelegate.h
diff options
context:
space:
mode:
authorStarla Insigna <starla4444@gmail.com>2011-09-04 11:17:44 -0400
committerStarla Insigna <starla4444@gmail.com>2011-09-04 11:17:44 -0400
commit339f8e2cb2fce18f6d32b3881a5cd390c0be488e (patch)
treecb17c635d664838259e591f4b345ae6349931d49 /Classes/CartDelegate.h
parent9f4bf94a763afba795fb991006081505c3ae466b (diff)
downloadcartcollect-339f8e2cb2fce18f6d32b3881a5cd390c0be488e.tar.gz
cartcollect-339f8e2cb2fce18f6d32b3881a5cd390c0be488e.tar.bz2
cartcollect-339f8e2cb2fce18f6d32b3881a5cd390c0be488e.zip
Implemented Jump mode (BETA) jump
Dear god this is beta. I think I'll release a build for the testers soon so I can see what people think and then hammer out the bugs.

Refs #204
Diffstat (limited to 'Classes/CartDelegate.h')
-rw-r--r--Classes/CartDelegate.h19
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