Suppose I have an Enemy class from which I create several enemy instances, they can move around and are clickable.
What approach do most people use to actually visually represent an enemy instance?
(in flash this was ridiculously simple, u just "linked" a movieclip to the class file)
My current approach isn't such a good one, I made Enemy a subclass of CCSprite so I could access position properties etc. I then created a sprite within the class and added it as a child. This worked fine for simple purposes but wasn't very practical in the long run.
I'd really like to know the best way of graphically representing an object if someone could please let me know.