hello
i have a gameview class with a separated HUD layer
the HUD is inside my gameview class
when i call my gaveview class from my menu like this
[[CCDirector SharedDirector] Replace Scene:[gameview Node]];
i only see my gameview, without the HUD
and when i make my gameview class the startup class, then i get the gameview with the HUD
my gameview is made like this
@implementation HUD
//HUD code
@end
@impementation gameview
//gameview code
@end
is there a way to call my gameview AND my HUD at the same time ?
please help, im a bit of a newbe at cocos2D but i want to learn it