Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #import "MainMenuScene.h"
  2. #import "AppDelegate.h"
  3. #import "SlidingMenuGrid.h"
  4.  
  5. @implementation MainMenuScene
  6. @synthesize layer = _layer;
  7.  
  8. - (id)init {
  9.  
  10. if ((self = [super init])) {
  11. self.layer = [[[MainMenuLayer alloc] init] autorelease];
  12. [self addChild:_layer];
  13. }
  14. return self;
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement