blob: 5ed68842e80e06ef29280368cc1ae598db9ae5a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// TouchDelegatingView.h
// shapes
//
// Created by Nate Murray on 8/23/10.
// Copyright 2010 LittleHiccup. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "CocosOverLayScrollView.h"
@interface TouchDelegatingView : UIView {
// UIPageControl* pageControl;
CocosOverlayScrollView* scrollView;
}
@property(nonatomic, retain) CocosOverlayScrollView* scrollView;
@end
|