summary refs log tree commit diff stats
path: root/libs/cocos2d/CCNotifications.m
diff options
context:
space:
mode:
authorStarla Insigna <starla4444@gmail.com>2011-09-04 11:27:41 -0400
committerStarla Insigna <starla4444@gmail.com>2011-09-04 11:27:41 -0400
commit1ad8c37f32e3c0244475c3b0ffcf55df091334e7 (patch)
tree53f7932e65abc1339eb22e6a1e42e7a4634cc7d3 /libs/cocos2d/CCNotifications.m
parent90f9884ec4a266fbf535f00bcb34a1b07396279d (diff)
parent8a0dcfc7950f2c39e4d6b444050003115711bd74 (diff)
downloadcartcollect-1ad8c37f32e3c0244475c3b0ffcf55df091334e7.tar.gz
cartcollect-1ad8c37f32e3c0244475c3b0ffcf55df091334e7.tar.bz2
cartcollect-1ad8c37f32e3c0244475c3b0ffcf55df091334e7.zip
Pulled in jump mode
Diffstat (limited to 'libs/cocos2d/CCNotifications.m')
0 files changed, 0 insertions, 0 deletions
ght: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
//
//  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