All pastes #2054206 Raw Edit

Miscellany

public text v1 · immutable
#2054206 ·published 2011-05-05 13:06 UTC
rendered paste body
#import "SpaceManagerCocos2d.h"
#import "GameConfig.h"

struct levelobjs {
	int form;
	int x;
	int y;
	bool stat;
};    //  error: two or more data types in declaration specifiers




@interface Game : CCLayer
{
	SpaceManagerCocos2d *smgr;
	levelobjs levelobj[99];
}

+(id) scene;
- (CCNode*) createBlockAt:(cpVect)pt
					width:(int)w
				   height:(int)h
					 mass:(int)mass;



@end