diff options
Diffstat (limited to 'Classes/TutorialBubble.h')
-rw-r--r-- | Classes/TutorialBubble.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Classes/TutorialBubble.h b/Classes/TutorialBubble.h new file mode 100644 index 0000000..4ce3352 --- /dev/null +++ b/Classes/TutorialBubble.h | |||
@@ -0,0 +1,29 @@ | |||
1 | // | ||
2 | // TutorialBubble.h | ||
3 | // Cart Collect | ||
4 | // | ||
5 | // Created by Starla Insigna on 8/4/11. | ||
6 | // Copyright 2011 Four Island. All rights reserved. | ||
7 | // | ||
8 | |||
9 | #import <UIKit/UIKit.h> | ||
10 | #import "cocos2d.h" | ||
11 | |||
12 | @interface TutorialBubble : UIView { | ||
13 | UILabel* textView; | ||
14 | UIImage* background; | ||
15 | UIImageView* imageView; | ||
16 | UIImageView* arrowView; | ||
17 | UIButton* button; | ||
18 | id target; | ||
19 | SEL action; | ||
20 | NSString* name; | ||
21 | } | ||
22 | |||
23 | @property (readonly) NSString* name; | ||
24 | - (id)initWithText:(NSString*)text name:(NSString*)name; | ||
25 | - (id)initWithText:(NSString*)text name:(NSString*)name spriteReference:(CCSprite*)spriteReference; | ||
26 | - (void)buttonPressed:(id)sender; | ||
27 | - (void)setTarget:(id)sender action:(SEL)action; | ||
28 | |||
29 | @end | ||