Hey so this is probably something simple that im missing but i have just a normal menu and a button that when clicked should change the scene which it is doing but i just want to get this error away my code is this:
-(void)choose: (id)sender {
CharacterSelection * cs = [CharacterSelection node];
[[Director sharedDirector] replaceScene:cs];
}
and the warning is:
warning: passing argument 1 of 'replaceScene:' from distinct Objective-C type
What am i doing wrong?
Thanks
-Lars