I am new to Cocos2D and I have question about texuture loading.
When I use code like follows to create two sprites ,does it load the texture "alien.png" two times into memory? Or does it save only one copy and create only one OpenGL texture ?
sp1=[CCSprite spriteWithFile:@"alien.png"];
sp2[CCSprite spriteWithFile:@"alien.png"];