Skip to content

Instantly share code, notes, and snippets.

@dabing1022
Created May 26, 2013 11:15
Show Gist options
  • Save dabing1022/5652489 to your computer and use it in GitHub Desktop.
Save dabing1022/5652489 to your computer and use it in GitHub Desktop.
LoadingScene
#import <Foundation/Foundation.h>
#import "cocos2d.h"
typedef enum {
MainMenuTargetScene,
ClassicTargetScene,
}TargetScenes;
@interface LoadingScene : CCScene {
TargetScenes targetScene;
}
+ (id)sceneWithTargetScene:(TargetScenes)target;
- (id)initWithTargetScene:(TargetScenes)target;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment