about summary refs log tree commit diff stats
path: root/data/maps/the_entry/rooms/Literate Entrance.txtpb
blob: b86ac80c61a27cfb34723e23813c202854790e0d (plain) (blame)
1
2
3
4
5
6
7
8
name: "Literate Entrance"
ports {
  name: "BROWN"
  display_name: "Pyramid Area Brown Worldport"
  path: "worldport9"
  destination { x: 39 y: 0 z: 55 }
  rotation: 90
}
11 Four Island. All rights reserved. // #import "CCLayer.h" #import "Cart.h" #define GAME_SCENE 436 #define GAME_LAYER 437 @interface GameMode : CCLayer <UIAlertViewDelegate> { NSMutableSet* objects; int score; int lives; Cart* cart; CCLayerColor* shadedLayer; CCLayer* pauseLayer; CCLabelBMFont* scoreLabel; CCLabelBMFont* livesLabel; void (^delayedAction)(void); BOOL isPaused; } @property (readonly) Cart* cart; @property (nonatomic,assign) int score; @property (nonatomic,assign) int lives; @property (readonly) BOOL isPaused; + (CCScene*)scene; - (void)tick:(ccTime)dt; - (BOOL)canPause; - (void)pause; - (void)unpause; - (void)mainmenu; - (void)scheduleDelayedAction:(void(^)(void))delayedAction delay:(float)delay; - (void)runDelayedAction; @end