summary refs log tree commit diff stats
path: root/Classes/CocosOverlayScrollView.h
blob: ad8e83f3329a8be8528db2d6fafe40bcf97f365f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  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