blob: 4ce3352323c187dd7bde72fc756bab61fc7541ff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//
// TutorialBubble.h
// Cart Collect
//
// Created by Starla Insigna on 8/4/11.
// Copyright 2011 Four Island. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "cocos2d.h"
@interface TutorialBubble : UIView {
UILabel* textView;
UIImage* background;
UIImageView* imageView;
UIImageView* arrowView;
UIButton* button;
id target;
SEL action;
NSString* name;
}
@property (readonly) NSString* name;
- (id)initWithText:(NSString*)text name:(NSString*)name;
- (id)initWithText:(NSString*)text name:(NSString*)name spriteReference:(CCSprite*)spriteReference;
- (void)buttonPressed:(id)sender;
- (void)setTarget:(id)sender action:(SEL)action;
@end
|