summary refs log blame commit diff stats
path: root/Classes/CocosOverlayScrollView.h
blob: ad8e83f3329a8be8528db2d6fafe40bcf97f365f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14












                                                                       
                               
                                                 
                                                                                                                                                     
    
//
//  CocosOverlayScrollView.h
//  shapes
//
//  Created by Nate Murray on 8/23/10.
//  Copyright 2010 LittleHiccup. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "cocos2d.h"

@interface CocosOverlayScrollView : UIScrollView <UIScrollViewDelegate>
{
    CCNode* targetLayer;
    UIPageControl* pageControl;
}
@property(nonatomic, retain) CCNode* targetLayer;
-(id) initWithFrame: (CGRect) frameRect numPages: (int) numPages width: (float) width layer: (CCNode*) layer pageControl:(UIPageControl*)pageControl;
@end