摘要: 1 #import <Foundation/Foundation.h> 2 #import "cocos2d.h" 3 4 @interface PauseLayerProtocol: CCNode 5 6 -(void)pauseLayerDidPause; 7 -(void)pauseLayerDidUnpause; 8 9 @end10 11 @interface PauseLayer : CCLayerColor12 {13 PauseLayerProtocol * delegate;14 }15 16 @property (nonatomic,assi 阅读全文
posted @ 2012-07-13 12:11 hellocby 阅读(2244) 评论(0) 推荐(0) 编辑