I am building class to is a sub class of CCSprite:
The problem is i keep getting "Type name requires a specifier or qualifier".
I have the code commented where i get the errors. Im not sure what i am doing wrong.
int tileSize = 80;
Boolean moveable = true;
id moveUp,moveRight,moveDown,moveLeft;
@interface Player : CCSprite {
//On these lines.
moveUp = [CCMoveTo actionWithDuration:2 position:ccp(0, 0 - tileSize)];
moveDown = [CCMoveTo actionWithDuration:2 position:ccp(0,0+tileSize)];
moveRight = [CCMoveTo actionWithDuration:2 position:ccp(0+tileSize,0)];
moveLeft = [CCMoveTo actionWithDuration:2 position:ccp(0-tileSize,0)];
}
-(void)move;
@end
@implementation Player{
@end