// // TutorialBubble.h // Cart Collect // // Created by Starla Insigna on 8/4/11. // Copyright 2011 Four Island. All rights reserved. // #import #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