All Data Structures Files Functions Variables Enumerations Enumerator Properties Defines
/Projects/Cogito/src/Objects/Slide.h
Go to the documentation of this file.
00001 //
00002 //  Slide.h
00003 //  Author: Thomas Taylor
00004 //
00005 //  Used in the SlideViewer
00006 //
00007 //  06/03/2012: Created class
00008 //
00009 
00010 #import "cocos2d.h"
00011 #import "CommonDataTypes.h"
00012 #import "Utils.h"
00013 
00014 @interface Slide : CCSprite
00015 
00016 {
00017     CCSprite* background;
00018 }
00019 
00020 -(id)initWithImage:(NSString*)_imageName;
00021 -(void)update;
00022 
00023 @end