blob: 29de1c71c0d09bcd1b16015d0699f61cdfea4cc0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// 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;
}
@property(nonatomic, retain) CCNode* targetLayer;
-(id) initWithFrame: (CGRect) frameRect numPages: (int) numPages width: (float) width layer: (CCNode*) layer;
@end
|